1 19 20 package org.netbeans.modules.xslt.model; 21 22 import org.netbeans.modules.xslt.model.enums.TBoolean; 23 24 25 47 public interface Sort extends ApplyTemplateChild, SelectSpec, SequenceConstructor, 48 LangSpec, CollationSpec 49 { 50 51 String STABLE = "stable"; 53 String ORDER = "order"; 55 String CASE_ORDER = "case-order"; 57 String DATA_TYPE = "data-type"; 59 62 TBoolean getStable(); 63 64 68 void setStable( TBoolean value ); 69 70 73 AttributeValueTemplate getOrder(); 74 75 79 void setOrder( AttributeValueTemplate value ); 80 81 84 AttributeValueTemplate getDataType(); 85 86 90 void setDataType( AttributeValueTemplate value ); 91 92 95 AttributeValueTemplate getCaseOrder(); 96 97 101 void setCaseOrder( AttributeValueTemplate value ); 102 } 103 | Popular Tags |