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 List extends SimpleTypeDefinition, SchemaComponent { 30 public static final String TYPE_PROPERTY = "type"; 31 public static final String INLINE_TYPE_PROPERTY = "inlineType"; 32 33 NamedComponentReference<GlobalSimpleType> getType(); 34 void setType(NamedComponentReference<GlobalSimpleType> t); 35 36 LocalSimpleType getInlineType(); 37 void setInlineType(LocalSimpleType st); 38 } 39 | Popular Tags |