1 19 20 package org.netbeans.modules.xml.schema.model; 21 22 import org.netbeans.modules.xml.xam.dom.NamedComponentReference; 23 24 29 public interface LocalAttribute extends Attribute, NameableSchemaComponent, ReferenceableSchemaComponent { 30 public static final String REF_PROPERTY = "ref"; 31 public static final String FORM_PROPERTY = "form"; 32 public static final String USE_PROPERTY = "use"; 33 34 Form getForm(); 35 void setForm(Form form); 36 Form getFormDefault(); 37 Form getFormEffective(); 38 39 NamedComponentReference<GlobalSimpleType> getType(); 40 void setType(NamedComponentReference<GlobalSimpleType> type); 41 42 LocalSimpleType getInlineType(); 43 void setInlineType(LocalSimpleType type); 44 45 Use getUse(); 46 void setUse(Use use); 47 Use getUseDefault(); 48 Use getUseEffective(); 49 50 } 51 | Popular Tags |