1 19 package org.netbeans.modules.xslt.model; 20 21 22 46 public interface ForEachGroup extends SequenceConstructor, SequenceElement, 47 Instruction, SelectSpec, SortContainer, CollationSpec 48 { 49 String GROUP_BY = "group-by"; 51 String GROUP_ADJACENT = "group-adjacent"; 53 String GROUP_STARTING_WITH = "group-starting-with"; 55 String GROUP_ENDING_WITH = "group-ending-with"; 57 60 String getGroupBy(); 61 62 66 void setGroupBy( String value ); 67 68 71 String getGroupAdjacent(); 72 73 77 void setGroupAdjacent( String value ); 78 79 82 String getGroupStartingWith(); 83 84 88 void setGroupStartingWith( String value ); 89 90 93 String getGroupEndingWith(); 94 95 99 void setGroupEndingWith( String value ); 100 } 101 | Popular Tags |