1 24 package javax.jcr.nodetype; 25 26 import javax.jcr.Value; 27 import javax.jcr.version.OnParentVersionAction; 28 29 35 public interface PropertyDef { 36 37 43 public NodeType getDeclaringNodeType(); 44 45 54 public String getName(); 55 56 74 public int getRequiredType(); 75 76 132 public String getValueConstraint(); 133 134 145 public Value getDefaultValue(); 146 147 156 public boolean isAutoCreate(); 157 158 182 public boolean isMandatory(); 183 184 191 public int getOnParentVersion(); 192 193 201 public boolean isReadOnly(); 202 203 213 public boolean isPrimaryItem(); 214 215 220 public boolean isMultiple(); 221 } 222 | Popular Tags |