|
|
|
|
|
*/ |
|
/* |
|
* 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 com.sun.org.apache.xerces.internal.impl.xs; |
|
|
|
import com.sun.org.apache.xerces.internal.impl.dv.ValidatedInfo; |
|
import com.sun.org.apache.xerces.internal.impl.xs.util.XSObjectListImpl; |
|
import com.sun.org.apache.xerces.internal.xs.ShortList; |
|
import com.sun.org.apache.xerces.internal.xs.XSAttributeDeclaration; |
|
import com.sun.org.apache.xerces.internal.xs.XSAttributeUse; |
|
import com.sun.org.apache.xerces.internal.xs.XSConstants; |
|
import com.sun.org.apache.xerces.internal.xs.XSNamespaceItem; |
|
import com.sun.org.apache.xerces.internal.xs.XSObjectList; |
|
import com.sun.org.apache.xerces.internal.xs.XSValue; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public class XSAttributeUseImpl implements XSAttributeUse { |
|
|
|
|
|
public XSAttributeDecl fAttrDecl = null; |
|
|
|
public short fUse = SchemaSymbols.USE_OPTIONAL; |
|
|
|
public short fConstraintType = XSConstants.VC_NONE; |
|
|
|
public ValidatedInfo fDefault = null; |
|
|
|
public XSObjectList fAnnotations = null; |
|
|
|
public void reset(){ |
|
fDefault = null; |
|
fAttrDecl = null; |
|
fUse = SchemaSymbols.USE_OPTIONAL; |
|
fConstraintType = XSConstants.VC_NONE; |
|
fAnnotations = null; |
|
} |
|
|
|
|
|
|
|
*/ |
|
public short getType() { |
|
return XSConstants.ATTRIBUTE_USE; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public String getName() { |
|
return null; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public String getNamespace() { |
|
return null; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public boolean getRequired() { |
|
return fUse == SchemaSymbols.USE_REQUIRED; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public XSAttributeDeclaration getAttrDeclaration() { |
|
return fAttrDecl; |
|
} |
|
|
|
|
|
|
|
*/ |
|
public short getConstraintType() { |
|
return fConstraintType; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
@Deprecated |
|
public String getConstraintValue() { |
|
|
|
return getConstraintType() == XSConstants.VC_NONE ? |
|
null : |
|
fDefault.stringValue(); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public XSNamespaceItem getNamespaceItem() { |
|
return null; |
|
} |
|
|
|
@Deprecated |
|
public Object getActualVC() { |
|
return getConstraintType() == XSConstants.VC_NONE ? |
|
null : |
|
fDefault.actualValue; |
|
} |
|
|
|
@Deprecated |
|
public short getActualVCType() { |
|
return getConstraintType() == XSConstants.VC_NONE ? |
|
XSConstants.UNAVAILABLE_DT : |
|
fDefault.actualValueType; |
|
} |
|
|
|
@Deprecated |
|
public ShortList getItemValueTypes() { |
|
return getConstraintType() == XSConstants.VC_NONE ? |
|
null : |
|
fDefault.itemValueTypes; |
|
} |
|
|
|
public XSValue getValueConstraintValue() { |
|
return fDefault; |
|
} |
|
|
|
|
|
|
|
*/ |
|
public XSObjectList getAnnotations() { |
|
return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST; |
|
} |
|
|
|
} // class XSAttributeUseImpl |