FileDocCategorySizeDatePackage
XMLAttributeDecl.javaAPI DocApache Xerces 3.0.11871Fri Sep 14 20:33:52 BST 2007org.apache.xerces.impl.dtd

XMLAttributeDecl

public class XMLAttributeDecl extends Object
xerces.internal
version
$Id: XMLAttributeDecl.java 446755 2006-09-15 21:56:27Z mrglavas $

Fields Summary
public final org.apache.xerces.xni.QName
name
name
public final XMLSimpleType
simpleType
simpleType
public boolean
optional
optional
Constructors Summary
Methods Summary
public voidclear()
clear

        this.name.clear();
        this.simpleType.clear();
        this.optional   = false;
    
public voidsetValues(org.apache.xerces.xni.QName name, XMLSimpleType simpleType, boolean optional)
setValues

param
name
param
simpleType
param
optional


    //
    // Methods
    //

                    
            
        this.name.setValues(name);
        this.simpleType.setValues(simpleType);
        this.optional   = optional;