1 19 20 28 29 package org.netbeans.modules.xml.schema.model; 30 31 35 public interface Cardinality { 36 37 40 String getMaxOccurs(); 41 42 46 void setMaxOccurs(String max); 47 48 51 String getMaxOccursDefault(); 52 53 56 String getMaxOccursEffective(); 57 58 61 Integer getMinOccurs(); 62 63 67 void setMinOccurs(Integer min); 68 69 72 int getMinOccursDefault(); 73 74 77 int getMinOccursEffective(); 78 } 79 | Popular Tags |