28 lines
564 B
Java
28 lines
564 B
Java
package org.apache.batik.parser;
|
|
|
|
public interface LengthHandler {
|
|
void cm() throws ParseException;
|
|
|
|
void em() throws ParseException;
|
|
|
|
void endLength() throws ParseException;
|
|
|
|
void ex() throws ParseException;
|
|
|
|
void in() throws ParseException;
|
|
|
|
void lengthValue(float f) throws ParseException;
|
|
|
|
void mm() throws ParseException;
|
|
|
|
void pc() throws ParseException;
|
|
|
|
void percentage() throws ParseException;
|
|
|
|
void pt() throws ParseException;
|
|
|
|
void px() throws ParseException;
|
|
|
|
void startLength() throws ParseException;
|
|
}
|