niagara-ax/decompiled/org/apache/batik/parser/NumberListHandler.java
2026-03-17 13:31:18 -07:00

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