1 19 20 package org.netbeans.modules.xml.schema.model; 21 22 28 public interface AnyElement extends Any, SequenceDefinition, SchemaComponent { 29 30 public static final String MIN_OCCURS_PROPERTY = "minOccurs"; 31 public static final String MAX_OCCURS_PROPERTY = "maxOccurs"; 32 33 String getMaxOccurs(); 34 void setMaxOccurs(String occurs); 35 36 Integer getMinOccurs(); 37 void setMinOccurs(Integer occurs); 38 39 42 int getMinOccursDefault(); 43 44 47 int getMinOccursEffective(); 48 49 52 String getMaxOccursDefault(); 53 54 57 String getMaxOccursEffective(); 58 59 } 60 | Popular Tags |