blob: 470467b0a5df8756a39dc3041475ce325aec65a8 [file] [log] [blame]
/*
* Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
package com.sun.xml.internal.xsom.util;
import com.sun.xml.internal.xsom.XSAnnotation;
import com.sun.xml.internal.xsom.XSAttGroupDecl;
import com.sun.xml.internal.xsom.XSAttributeDecl;
import com.sun.xml.internal.xsom.XSAttributeUse;
import com.sun.xml.internal.xsom.XSComplexType;
import com.sun.xml.internal.xsom.XSContentType;
import com.sun.xml.internal.xsom.XSElementDecl;
import com.sun.xml.internal.xsom.XSFacet;
import com.sun.xml.internal.xsom.XSModelGroup;
import com.sun.xml.internal.xsom.XSModelGroupDecl;
import com.sun.xml.internal.xsom.XSNotation;
import com.sun.xml.internal.xsom.XSParticle;
import com.sun.xml.internal.xsom.XSSchema;
import com.sun.xml.internal.xsom.XSSimpleType;
import com.sun.xml.internal.xsom.XSWildcard;
import com.sun.xml.internal.xsom.XSIdentityConstraint;
import com.sun.xml.internal.xsom.XSXPath;
import com.sun.xml.internal.xsom.visitor.XSFunction;
/**
* Filter implementation of XSFilter.
* This class forwards all the method calls to another XSFunction.
*
* <p>
* This class is intended to be derived by client application
* to add some meaningful behavior.
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
*/
public class XSFunctionFilter<T> implements XSFunction<T> {
/** This object will receive all forwarded calls. */
protected XSFunction<T> core;
public XSFunctionFilter( XSFunction<T> _core ) {
this.core = _core;
}
public XSFunctionFilter() {}
public T annotation(XSAnnotation ann) {
return core.annotation(ann);
}
public T attGroupDecl(XSAttGroupDecl decl) {
return core.attGroupDecl(decl);
}
public T attributeDecl(XSAttributeDecl decl) {
return core.attributeDecl(decl);
}
public T attributeUse(XSAttributeUse use) {
return core.attributeUse(use);
}
public T complexType(XSComplexType type) {
return core.complexType(type);
}
public T schema(XSSchema schema) {
return core.schema(schema);
}
public T facet(XSFacet facet) {
return core.facet(facet);
}
public T notation(XSNotation notation) {
return core.notation(notation);
}
public T simpleType(XSSimpleType simpleType) {
return core.simpleType(simpleType);
}
public T particle(XSParticle particle) {
return core.particle(particle);
}
public T empty(XSContentType empty) {
return core.empty(empty);
}
public T wildcard(XSWildcard wc) {
return core.wildcard(wc);
}
public T modelGroupDecl(XSModelGroupDecl decl) {
return core.modelGroupDecl(decl);
}
public T modelGroup(XSModelGroup group) {
return core.modelGroup(group);
}
public T elementDecl(XSElementDecl decl) {
return core.elementDecl(decl);
}
public T identityConstraint(XSIdentityConstraint decl) {
return core.identityConstraint(decl);
}
public T xpath(XSXPath xpath) {
return core.xpath(xpath);
}
}