org.apache.cocoon.slop.interfaces
Interface SlopParser

All Known Implementing Classes:
SimpleSlopParser

public interface SlopParser

Interface to SLOP parsers

Version:
CVS $Id: SlopParser.html 1304258 2012-03-23 10:09:27Z ilgrosso $
Author:
Bertrand Delacretaz

Method Summary
 void endDocument()
          must be called once all calls to processLine() are done
 void processLine(String line)
          call this to process input lines, does the actual parsing
 void startDocument(ContentHandler destination)
          must be called before any call to processLine()
 

Method Detail

startDocument

void startDocument(ContentHandler destination)
                   throws SAXException,
                          ProcessingException
must be called before any call to processLine()

Throws:
SAXException
ProcessingException

endDocument

void endDocument()
                 throws SAXException,
                        ProcessingException
must be called once all calls to processLine() are done

Throws:
SAXException
ProcessingException

processLine

void processLine(String line)
                 throws SAXException,
                        ProcessingException
call this to process input lines, does the actual parsing

Throws:
SAXException
ProcessingException


Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.