blob: 803bc3b84ce5f9fcb6035a0e234ecde8460452b9 [file]
/*
Copyright 2006 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;
/**
* A parser for clock values.
*
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id$
*/
public class ClockParser extends TimingParser {
/**
* The handler used to report parse events.
*/
protected ClockHandler clockHandler;
/**
* Creates a new ClockParser.
*/
public ClockParser() {
super(false, false);
}
/**
* Registers a parse event handler.
*/
public void setClockHandler(ClockHandler handler) {
clockHandler = handler;
}
/**
* Returns the parse event handler in use.
*/
public ClockHandler getClockHandler() {
return clockHandler;
}
/**
* Parses a clock value.
*/
protected void doParse() throws ParseException, IOException {
current = reader.read();
float clockValue = parseClockValue();
if (current != -1) {
reportError("end.of.stream.expected",
new Object[] { new Integer(current) });
}
if (clockHandler != null) {
clockHandler.clockValue(clockValue);
}
}
}