Interface RtfDestinationListener
-
- All Superinterfaces:
java.util.EventListener
public interface RtfDestinationListener extends java.util.EventListenerRtfDestinationListenerinterface for handling events.- Since:
- 2.0.8
- Author:
- Howard Shank (hgshank@yahoo.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intafterCharacter(int ch)RtfCtrlWordDataafterCtrlWord(RtfCtrlWordData ctrlWordData)intbeforeCharacter(int ch)RtfCtrlWordDatabeforeCtrlWord(RtfCtrlWordData ctrlWordData)intonCharacter(int ch)booleanonCloseGroup()RtfCtrlWordDataonCtrlWord(RtfCtrlWordData ctrlWordData)booleanonOpenGroup()
-
-
-
Method Detail
-
beforeCtrlWord
RtfCtrlWordData beforeCtrlWord(RtfCtrlWordData ctrlWordData)
-
onCtrlWord
RtfCtrlWordData onCtrlWord(RtfCtrlWordData ctrlWordData)
-
afterCtrlWord
RtfCtrlWordData afterCtrlWord(RtfCtrlWordData ctrlWordData)
-
beforeCharacter
int beforeCharacter(int ch)
-
onCharacter
int onCharacter(int ch)
-
afterCharacter
int afterCharacter(int ch)
-
onOpenGroup
boolean onOpenGroup()
- Returns:
- true if all went well
-
onCloseGroup
boolean onCloseGroup()
- Returns:
- true if all went well
-
-