Interface IEventHandler
-
- All Known Implementing Classes:
DefaultEventHandler
public interface IEventHandlerProvides the methods to handle events generated by theXLIFFReaderobject.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventhandleEndDocument(Event event)Handles theEND_DOCUMENTevent.EventhandleEndFile(Event event)Handles theEND_FILEevent.EventhandleEndGroup(Event event)Handles theEND_GROUPevent.EventhandleEndXliff(Event event)Handles theEND_XLIFFevent.EventhandleInsignificantPart(Event event)Handles theINSIGNIFICANT_PARTevent.EventhandleMidFile(Event event)Handles theMID_FILEevent.EventhandleSkeleton(Event event)Handles theSKELETONevent.EventhandleStartDocument(Event event)Handles theSTART_DOCUMENTevent.EventhandleStartFile(Event event)Handles theSTART_FILEevent.EventhandleStartGroup(Event event)Handles theSTART_GROUPevent.EventhandleStartXliff(Event event)Handles theSTART_XLIFFevent.EventhandleUnit(Event event)Handles theTEXT_UNITevent.
-
-
-
Method Detail
-
handleStartDocument
Event handleStartDocument(Event event)
Handles theSTART_DOCUMENTevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleEndDocument
Event handleEndDocument(Event event)
Handles theEND_DOCUMENTevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleStartXliff
Event handleStartXliff(Event event)
Handles theSTART_XLIFFevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleEndXliff
Event handleEndXliff(Event event)
Handles theEND_XLIFFevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleStartFile
Event handleStartFile(Event event)
Handles theSTART_FILEevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleSkeleton
Event handleSkeleton(Event event)
Handles theSKELETONevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleMidFile
Event handleMidFile(Event event)
Handles theMID_FILEevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleEndFile
Event handleEndFile(Event event)
Handles theEND_FILEevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleStartGroup
Event handleStartGroup(Event event)
Handles theSTART_GROUPevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleEndGroup
Event handleEndGroup(Event event)
Handles theEND_GROUPevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
handleInsignificantPart
Event handleInsignificantPart(Event event)
Handles theINSIGNIFICANT_PARTevent.- Parameters:
event- the event to process.- Returns:
- the processed event.
-
-