Remove NamedParser and NamedWriter
----------------------------------

                 Key: ABDERA-18
                 URL: http://issues.apache.org/jira/browse/ABDERA-18
             Project: Abdera
          Issue Type: Improvement
            Reporter: James M Snell
         Assigned To: James M Snell


In the core, beyond the basic parsing and serialization of Atom and APP 
documents, we support a number of extra things like Named Parsers and Named 
Writers.

These essentially provide a means of registering alternative parser and writer 
implementations so that they can be retrieved by name rather than by class.  
e.g. writerFactory.getWriter("prettyxml").

There is a certain amount of overhead, however, in providing these mechanisms.

The following is easier and does not require any configuration.

   Abdera abdera = new Abdera();
   Writer writer = new PrettyXmlWriter(abdera);

Therefore, I'd like to pull out the Named Writer and Named Parser stuff.



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to