blob: 86a3e50d988f64226b02d271cc435606c15a5ee8 [file] [log] [blame]
/* Copyright 2004 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.xmlbeans.impl.common;
import org.apache.xmlbeans.XmlCursor;
import javax.xml.namespace.QName;
/**
* First event must be a BEGIN with no name (to communicate any xsi
* information). BEGIN and END need to match.
*/
public interface ValidatorListener
{
public static final int BEGIN = 1; // Begin element
public static final int END = 2; // End element
public static final int TEXT = 3; // Text
public static final int ATTR = 4; // Attr (non-namespaces, non xsi only)
public static final int ENDATTRS = 5; // after BEGIN, after attrs
void nextEvent ( int kind, Event event );
public static interface Event extends PrefixResolver
{
public static final int PRESERVE = 1;
public static final int REPLACE = 2;
public static final int COLLAPSE = 3;
XmlCursor getLocationAsCursor ( );
boolean getXsiType ( Chars chars ); // BEGIN xsi:type
boolean getXsiNil ( Chars chars ); // BEGIN xsi:nil
boolean getXsiLoc ( Chars chars ); // BEGIN xsi:schemaLocation
boolean getXsiNoLoc ( Chars chars ); // BEGIN xsi:noNamespaceSchemaLocation
// On START and ATTR
QName getName ( );
// On TEXT and ATTR
void getText ( Chars chars );
void getText ( Chars chars, int wsr );
boolean textIsWhitespace ( );
}
}