14 lines
318 B
Java
14 lines
318 B
Java
package org.apache.batik.parser;
|
|
|
|
public interface NumberListHandler {
|
|
void endNumber() throws ParseException;
|
|
|
|
void endNumberList() throws ParseException;
|
|
|
|
void numberValue(float f) throws ParseException;
|
|
|
|
void startNumber() throws ParseException;
|
|
|
|
void startNumberList() throws ParseException;
|
|
}
|