1 23 24 package org.objectweb.fractal.adl.types; 25 26 29 30 public interface TypeBuilder { 31 32 Object createInterfaceType ( 33 String name, 34 String signature, 35 String role, 36 String contingency, 37 String cardinality, 38 Object context) throws Exception ; 39 40 Object createComponentType ( 41 String name, 42 Object [] interfaceTypes, 43 Object context) throws Exception ; 44 } 45 | Popular Tags |