blob: 17bfe7124e9de317a988f5cb36b7c13e7c2986a8 [file] [log] [blame]
/*
Copyright 2003 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.batik.parser;
import java.io.IOException;
/**
* This class implements an event-based parser for the SVG Number
* list values.
*
* @author tonny@kiyut.com
*/
public class NumberListParser extends NumberParser {
/**
* The number list handler used to report parse events.
*/
protected NumberListHandler numberListHandler;
/** Creates a new instance of NumberListParser */
public NumberListParser() {
numberListHandler = DefaultNumberListHandler.INSTANCE;
}
/**
* Allows an application to register a number list handler.
*
* <p>If the application does not register a handler, all
* events reported by the parser will be silently ignored.
*
* <p>Applications may register a new or different handler in the
* middle of a parse, and the parser must begin using the new
* handler immediately.</p>
* @param handler The number list handler.
*/
public void setNumberListHandler(NumberListHandler handler) {
numberListHandler = handler;
}
/**
* Returns the number list handler in use.
*/
public NumberListHandler getNumberListHandler() {
return (NumberListHandler)numberListHandler;
}
/**
* Parses the given reader.
*/
protected void doParse() throws ParseException, IOException {
numberListHandler.startNumberList();
current = reader.read();
skipSpaces();
try {
for (;;) {
numberListHandler.startNumber();
float f = parseFloat();
numberListHandler.numberValue(f);
numberListHandler.endNumber();
skipCommaSpaces();
if (current == -1) {
break;
}
}
} catch (NumberFormatException e) {
reportError("character.unexpected",
new Object[] { new Integer(current) });
}
numberListHandler.endNumberList();
}
}