1 19 20 package org.netbeans.modules.xml.schema.model; 21 22 28 public interface BoundaryFacet extends SchemaComponent { 29 public static final String FIXED_PROPERTY = "fixed"; 30 public static final String VALUE_PROPERTY = "value"; 31 32 Boolean isFixed(); 33 void setFixed(Boolean isFixed); 34 boolean getFixedDefault(); 35 boolean getFixedEffective(); 36 37 String getValue(); 38 void setValue(String maxValue); 39 } 40 | Popular Tags |