8 lines
194 B
Java
8 lines
194 B
Java
package org.apache.batik.parser;
|
|
|
|
public interface LengthListHandler extends LengthHandler {
|
|
void endLengthList() throws ParseException;
|
|
|
|
void startLengthList() throws ParseException;
|
|
}
|