blob: 3709ddb444aa6c754a9786a51a12ac0241944e54 [file] [log] [blame]
/*****************************************************************************
* Copyright (C) The Apache Software Foundation. All rights reserved. *
* ------------------------------------------------------------------------- *
* This software is published under the terms of the Apache Software License *
* version 1.1, a copy of which has been included with this distribution in *
* the LICENSE file. *
*****************************************************************************/
package org.apache.batik.parser;
/**
* This interface represents an event-based parser for the SVG clock
* values.
*
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id$
*/
public interface ClockParser extends Parser {
/**
* Allows an application to register an clock 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 clock handler.
*/
void setClockHandler(ClockHandler handler);
/**
* Returns the clock handler in use.
*/
ClockHandler getClockHandler();
}