2026-03-17 13:31:18 -07:00

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;
}