~hjd/ubuntu/wily/xmlgraphics-commons/debian-merged

« back to all changes in this revision

Viewing changes to src/java/org/apache/xmlgraphics/util/XMLizable.java

  • Committer: Bazaar Package Importer
  • Author(s): Vincent Fourmond
  • Date: 2011-02-11 14:15:14 UTC
  • mfrom: (8.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110211141514-h67achft6x31gju1
Tags: 1.4.dfsg-3
Uploading to unstable, hoping we won't break too many things ;-)...

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
 
1
/*
2
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
3
 * contributor license agreements.  See the NOTICE file distributed with
4
4
 * this work for additional information regarding copyright ownership.
15
15
 * limitations under the License.
16
16
 */
17
17
 
18
 
/* $Id$ */
 
18
/* $Id: XMLizable.java 750418 2009-03-05 11:03:54Z vhennebert $ */
19
19
 
20
20
package org.apache.xmlgraphics.util;
21
21
 
22
 
/* 
 
22
/*
23
23
 * Copied from Apache Excalibur:
24
24
 * https://svn.apache.org/repos/asf/excalibur/trunk/components/xmlutil/
25
25
 *                                           src/java/org/apache/excalibur/xml/sax/XMLizable.java
33
33
 * of their current state as SAX events.
34
34
 */
35
35
public interface XMLizable {
36
 
    
 
36
 
37
37
    /**
38
38
     * Generates SAX events representing the object's state.
39
39
     * @param handler ContentHandler instance to send the SAX events to
40
40
     * @throws SAXException if there's a problem generating the SAX events
41
41
     */
42
42
    void toSAX(ContentHandler handler) throws SAXException;
43
 
    
 
43
 
44
44
}