1 28 29 package org.objectweb.jonathan.apis.kernel; 30 31 34 public interface Component { 35 36 43 Element getElement(Name name); 44 45 57 Component getComponent(Name name); 58 59 72 Object getValue(Name name); 73 74 82 Element getReference(); 83 84 94 Element setReference(Element element); 95 96 100 Class getType(); 101 102 111 Object getValue(); 112 113 121 int getIntValue(); 122 123 129 Object getFactoryValue() throws JonathanException; 130 131 132 170 Component fork(); 171 172 } 173 | Popular Tags |