1 23 24 package org.objectweb.fractal.adl.types; 25 26 import org.objectweb.fractal.adl.interfaces.Interface; 27 28 31 32 public interface TypeInterface extends Interface { 33 String SINGLETON_CARDINALITY = "singleton"; 34 String COLLECTION_CARDINALITY = "collection"; 35 String MANDATORY_CONTINGENCY = "mandatory"; 36 String OPTIONAL_CONTINGENCY = "optional"; 37 String SERVER_ROLE = "server"; 38 String CLIENT_ROLE = "client"; 39 String getCardinality (); 40 void setCardinality (String arg); 41 String getContingency (); 42 void setContingency (String arg); 43 String getSignature (); 44 void setSignature (String arg); 45 String getRole (); 46 void setRole (String arg); 47 } 48 | Popular Tags |