1 22 package org.jboss.iiop.rmi.ir; 23 24 import org.omg.CORBA.ContainerOperations ; 25 import org.omg.CORBA.DefinitionKind ; 26 27 35 interface LocalContainer 36 extends ContainerOperations , LocalIRObject 37 { 38 42 public LocalContained _lookup(String search_name); 43 44 48 public LocalContained[] _contents(DefinitionKind limit_type, 49 boolean exclude_inherited); 50 51 55 public LocalContained[] _lookup_name(String search_name, 56 int levels_to_search, 57 DefinitionKind limit_type, 58 boolean exclude_inherited); 59 60 63 public void add(String name, LocalContained contained) 64 throws IRConstructionException; 65 } 66 67 | Popular Tags |