net.fortuna.ical4j.data
Interface ContentHandler

All Known Implementing Classes:
CalendarBuilder

public interface ContentHandler

Implementors provide functionality applicable during the parsing of an iCalendar data stream (e.g. building an object model).

Author:
Ben Fortuna

Method Summary
 void endCalendar()
          Triggers the end of handling a calendar.
 void endComponent(java.lang.String name)
          Triggers the end of handling a component.
 void endProperty(java.lang.String name)
          Triggers the end of handling a property.
 void parameter(java.lang.String name, java.lang.String value)
          Triggers the handling of a parameter.
 void propertyValue(java.lang.String value)
          Triggers the handling of a property value.
 void startCalendar()
          Triggers the start of handling a calendar.
 void startComponent(java.lang.String name)
          Triggers the start of handling a component.
 void startProperty(java.lang.String name)
          Triggers the start of handling a property.
 

Method Detail

startCalendar

void startCalendar()
Triggers the start of handling a calendar.


endCalendar

void endCalendar()
Triggers the end of handling a calendar.


startComponent

void startComponent(java.lang.String name)
Triggers the start of handling a component.


endComponent

void endComponent(java.lang.String name)
Triggers the end of handling a component.


startProperty

void startProperty(java.lang.String name)
Triggers the start of handling a property.


propertyValue

void propertyValue(java.lang.String value)
                   throws java.net.URISyntaxException,
                          java.text.ParseException,
                          java.io.IOException
Triggers the handling of a property value.

Throws:
java.net.URISyntaxException
java.text.ParseException
java.io.IOException

endProperty

void endProperty(java.lang.String name)
Triggers the end of handling a property.


parameter

void parameter(java.lang.String name,
               java.lang.String value)
               throws java.net.URISyntaxException
Triggers the handling of a parameter.

Throws:
java.net.URISyntaxException


Copyright © 2004-2007 Modularity. All Rights Reserved.