1 23 24 package org.objectweb.fractal.julia; 25 26 import org.objectweb.fractal.api.Interface; 27 28 32 33 public interface ComponentInterface extends Interface { 34 35 40 41 void setFcItfName (String name); 42 43 49 50 Object getFcItfImpl (); 51 52 58 59 void setFcItfImpl (Object impl); 60 61 73 74 boolean hasFcInterceptor (); 75 76 81 82 Object clone (); 83 } 84 | Popular Tags |