1 20 21 package org.apache.directory.ldapstudio.dsmlv2; 22 23 24 import java.io.IOException ; 25 26 import org.xmlpull.v1.XmlPullParserException; 27 28 29 32 public interface IGrammar 33 { 34 37 47 void executeAction( Dsmlv2Container container ) throws XmlPullParserException, IOException ; 48 49 50 55 String getName(); 56 57 58 63 IStates getStatesEnum(); 64 65 66 72 void setName( String name ); 73 } | Popular Tags |