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