blob: 1ebabcbce8d9b6bb050e03060cc61421c8d3c812 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.ws.commons.schema.walker;
import org.apache.ws.commons.schema.XmlSchemaAttribute;
/**
* This represents a complete XML Schema Attribute, after references are
* followed and types are defined.
*/
public class XmlSchemaAttrInfo {
/**
* Constructs a new <code>XmlSchemaAttrInfo</code> from the provided
* {@link XmlSchemaAttribute} and {@link XmlSchemaTypeInfo}.
* <p>
* The <code>XmlSchemaAttribute</code> represents the XML attribute
* definition after any references have been resolved, and merged with the
* global definition.
* </p>
*
* @param attribute The underlying <code>XmlSchemaAttribute</code>.
* @param attrType The attribute's type.
*/
public XmlSchemaAttrInfo(XmlSchemaAttribute attribute, XmlSchemaTypeInfo attrType) {
this(attribute);
this.attrType = attrType;
}
XmlSchemaAttrInfo(XmlSchemaAttribute attribute, boolean isTopLevel) {
this.attribute = attribute;
this.isTopLevel = isTopLevel;
this.attrType = null;
}
XmlSchemaAttrInfo(XmlSchemaAttribute attribute) {
this(attribute, attribute.isTopLevel());
}
/**
* The underlying {@link XmlSchemaAttribute}. If the attribute was
* originally a reference, this instance is merged with the global attribute
* it referenced.
* <p>
* The only exception is with {@link XmlSchemaAttribute#isTopLevel()}. A
* copy of the <code>XmlSchemaAttribute</code> may have been made in order
* to properly merge a local reference with a global definition. When that
* happens, <code>XmlSchemaAttribute.isTopLevel()</code> may not return the
* correct result. Use {@link #isTopLevel()} instead.
* </p>
*/
public XmlSchemaAttribute getAttribute() {
return attribute;
}
/**
* The attribute's value type.
*/
public XmlSchemaTypeInfo getType() {
return attrType;
}
/**
* Whether the attribute exists in the global namespace. Because a copy of
* {@link XmlSchemaAttribute} may have been made in order to merge a local
* reference with the global definition,
* {@link XmlSchemaAttribute#isTopLevel()} may no longer be accurate.
*/
public boolean isTopLevel() {
return isTopLevel;
}
void setType(XmlSchemaTypeInfo attrType) {
this.attrType = attrType;
}
private final XmlSchemaAttribute attribute;
private final boolean isTopLevel;
private XmlSchemaTypeInfo attrType;
}