~ubuntu-branches/ubuntu/vivid/jaxb/vivid-proposed

« back to all changes in this revision

Viewing changes to xjc/src/com/sun/tools/xjc/util/ForkContentHandler.java

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2014-09-01 14:26:44 UTC
  • Revision ID: package-import@ubuntu.com-20140901142644-nox3y6t2unq2wxjf
Tags: upstream-2.2.5
ImportĀ upstreamĀ versionĀ 2.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common Development
 
8
 * and Distribution License("CDDL") (collectively, the "License").  You
 
9
 * may not use this file except in compliance with the License.  You can
 
10
 * obtain a copy of the License at
 
11
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 
12
 * or packager/legal/LICENSE.txt.  See the License for the specific
 
13
 * language governing permissions and limitations under the License.
 
14
 *
 
15
 * When distributing the software, include this License Header Notice in each
 
16
 * file and include the License file at packager/legal/LICENSE.txt.
 
17
 *
 
18
 * GPL Classpath Exception:
 
19
 * Oracle designates this particular file as subject to the "Classpath"
 
20
 * exception as provided by Oracle in the GPL Version 2 section of the License
 
21
 * file that accompanied this code.
 
22
 *
 
23
 * Modifications:
 
24
 * If applicable, add the following below the License Header, with the fields
 
25
 * enclosed by brackets [] replaced by your own identifying information:
 
26
 * "Portions Copyright [year] [name of copyright owner]"
 
27
 *
 
28
 * Contributor(s):
 
29
 * If you wish your version of this file to be governed by only the CDDL or
 
30
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 
31
 * elects to include this software in this distribution under the [CDDL or GPL
 
32
 * Version 2] license."  If you don't indicate a single choice of license, a
 
33
 * recipient has the option to distribute your version of this file under
 
34
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 
35
 * its licensees as provided above.  However, if you add GPL Version 2 code
 
36
 * and therefore, elected the GPL Version 2 license, then the option applies
 
37
 * only if the new code is made subject to such option by the copyright
 
38
 * holder.
 
39
 */
 
40
 
 
41
package com.sun.tools.xjc.util;
 
42
 
 
43
import org.xml.sax.Attributes;
 
44
import org.xml.sax.ContentHandler;
 
45
import org.xml.sax.Locator;
 
46
import org.xml.sax.SAXException;
 
47
 
 
48
/**
 
49
 * ContentHandler that "forks" the incoming SAX2 events to
 
50
 * two ContentHandlers.
 
51
 *
 
52
 *
 
53
 * @author  <a href="mailto:kohsuke.kawaguchi@sun.com">Kohsuke KAWAGUCHI</a>
 
54
 */
 
55
public class ForkContentHandler implements ContentHandler {
 
56
 
 
57
        /**
 
58
         * Creates a ForkContentHandler.
 
59
         *
 
60
         * @param first
 
61
         *     This handler will receive a SAX event first.
 
62
         * @param second
 
63
         *     This handler will receive a SAX event after the first handler
 
64
         *     receives it.
 
65
         */
 
66
        public ForkContentHandler( ContentHandler first, ContentHandler second ) {
 
67
                lhs = first;
 
68
                rhs = second;
 
69
        }
 
70
 
 
71
        /**
 
72
         * Creates ForkContentHandlers so that the specified handlers
 
73
         * will receive SAX events in the order of the array.
 
74
         */
 
75
        public static ContentHandler create( ContentHandler[] handlers ) {
 
76
                if(handlers.length==0)
 
77
                        throw new IllegalArgumentException();
 
78
 
 
79
                ContentHandler result = handlers[0];
 
80
                for( int i=1; i<handlers.length; i++ )
 
81
                        result = new ForkContentHandler( result, handlers[i] );
 
82
                return result;
 
83
        }
 
84
 
 
85
 
 
86
        private final ContentHandler lhs,rhs;
 
87
 
 
88
        public void setDocumentLocator (Locator locator) {
 
89
                lhs.setDocumentLocator(locator);
 
90
                rhs.setDocumentLocator(locator);
 
91
        }
 
92
 
 
93
        public void startDocument() throws SAXException {
 
94
                lhs.startDocument();
 
95
                rhs.startDocument();
 
96
        }
 
97
 
 
98
        public void endDocument () throws SAXException {
 
99
                lhs.endDocument();
 
100
                rhs.endDocument();
 
101
        }
 
102
 
 
103
        public void startPrefixMapping (String prefix, String uri) throws SAXException {
 
104
                lhs.startPrefixMapping(prefix,uri);
 
105
                rhs.startPrefixMapping(prefix,uri);
 
106
        }
 
107
 
 
108
        public void endPrefixMapping (String prefix) throws SAXException {
 
109
                lhs.endPrefixMapping(prefix);
 
110
                rhs.endPrefixMapping(prefix);
 
111
        }
 
112
 
 
113
        public void startElement (String uri, String localName, String qName, Attributes attributes) throws SAXException {
 
114
                lhs.startElement(uri,localName,qName,attributes);
 
115
                rhs.startElement(uri,localName,qName,attributes);
 
116
        }
 
117
 
 
118
        public void endElement (String uri, String localName, String qName) throws SAXException {
 
119
                lhs.endElement(uri,localName,qName);
 
120
                rhs.endElement(uri,localName,qName);
 
121
        }
 
122
 
 
123
        public void characters (char ch[], int start, int length) throws SAXException {
 
124
                lhs.characters(ch,start,length);
 
125
                rhs.characters(ch,start,length);
 
126
        }
 
127
 
 
128
        public void ignorableWhitespace (char ch[], int start, int length) throws SAXException {
 
129
                lhs.ignorableWhitespace(ch,start,length);
 
130
                rhs.ignorableWhitespace(ch,start,length);
 
131
        }
 
132
 
 
133
        public void processingInstruction (String target, String data) throws SAXException {
 
134
                lhs.processingInstruction(target,data);
 
135
                rhs.processingInstruction(target,data);
 
136
        }
 
137
 
 
138
        public void skippedEntity (String name) throws SAXException {
 
139
                lhs.skippedEntity(name);
 
140
                rhs.skippedEntity(name);
 
141
        }
 
142
 
 
143
}