|
|||||||||
| Home >> All >> org >> apache >> batik >> [ parser overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.apache.batik.parser
Interface LengthHandler

- All Known Subinterfaces:
- LengthListHandler
- All Known Implementing Classes:
- DefaultLengthHandler, DefaultLengthListHandler, UnitProcessor.UnitResolver
- public interface LengthHandler
This interface must be implemented and then registred as the
handler of a LengthParser instance in order to be
notified of parsing events.
- Version:
- $Id: LengthHandler.java,v 1.3 2004/08/18 07:14:46 vhardy Exp $
| Method Summary | |
void |
cm()
Invoked when 'cm' has been parsed. |
void |
em()
Invoked when 'em' has been parsed. |
void |
endLength()
Invoked when the length attribute ends. |
void |
ex()
Invoked when 'ex' has been parsed. |
void |
in()
Invoked when 'in' has been parsed. |
void |
lengthValue(float v)
Invoked when a float value has been parsed. |
void |
mm()
Invoked when 'mm' has been parsed. |
void |
pc()
Invoked when 'pc' has been parsed. |
void |
percentage()
Invoked when '%' has been parsed. |
void |
pt()
Invoked when 'pt' has been parsed. |
void |
px()
Invoked when 'px' has been parsed. |
void |
startLength()
Invoked when the length attribute starts. |
| Method Detail |
startLength
public void startLength()
throws ParseException
- Invoked when the length attribute starts.
lengthValue
public void lengthValue(float v)
throws ParseException
- Invoked when a float value has been parsed.
em
public void em()
throws ParseException
- Invoked when 'em' has been parsed.
ex
public void ex()
throws ParseException
- Invoked when 'ex' has been parsed.
in
public void in()
throws ParseException
- Invoked when 'in' has been parsed.
cm
public void cm()
throws ParseException
- Invoked when 'cm' has been parsed.
mm
public void mm()
throws ParseException
- Invoked when 'mm' has been parsed.
pc
public void pc()
throws ParseException
- Invoked when 'pc' has been parsed.
pt
public void pt()
throws ParseException
- Invoked when 'pt' has been parsed.
px
public void px()
throws ParseException
- Invoked when 'px' has been parsed.
percentage
public void percentage()
throws ParseException
- Invoked when '%' has been parsed.
endLength
public void endLength()
throws ParseException
- Invoked when the length attribute ends.
|
|||||||||
| Home >> All >> org >> apache >> batik >> [ parser overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC