Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 28 29 package ist.coach.itut_q816Components.ContainmentServiceProviderComposition; 30 31 32 38 public class ContainmentServiceProviderImpl 39 extends ist.coach.itut_q816Components.ContainmentServiceProviderComposition.ContainmentServiceProvider_impl 40 { 41 47 48 49 protected static java.util.Hashtable tree; 53 54 protected static java.util.Hashtable reverse_tree; 57 58 protected static String _local_root= null; 59 65 public ContainmentServiceProviderImpl() 66 { 67 tree = new java.util.Hashtable (); 68 reverse_tree = new java.util.Hashtable (); 69 } 70 84 public void 85 configuration_complete() 86 throws org.omg.Components.InvalidConfiguration 87 { 88 92 System.err.println("Containment Local Root = " + _local_root); 93 if (_local_root != null && _local_root.length() > 0) 94 synchronized(_local_root) { 95 tree.put(_local_root, new java.util.Vector ()); 96 } 97 System.err.println("ContainmentServiceProvider configuration completed..."); 98 } 99 100 106 109 public String  110 local_root() 111 { 112 return _local_root; 116 } 117 118 121 public void 122 local_root(String local_root) 123 { 124 _local_root = local_root; 128 if (! tree.contains(_local_root)) 129 tree.put(_local_root, new java.util.Vector ()); 130 } 131 132 } 133
| Popular Tags
|