1 26 27 28 package org.objectweb.mobilitools.util.corba; 29 30 31 import org.omg.CORBA.*; 32 import org.omg.CosNaming.*; 33 import org.omg.CosNaming.NamingContextPackage.*; 34 import java.util.*; 35 36 37 public class NSbinding 38 { 39 static public final int CONTEXT = 0; 40 static public final int OBJECT = 1; 41 public org.omg.CORBA.Object object; 42 public String name; 43 public String kind; 44 public int type; 45 46 public NSbinding(String the_name, 47 String the_kind, 48 int the_type, 49 org.omg.CORBA.Object the_object) 50 { 51 name = the_name; 52 kind = the_kind; 53 type = the_type; 54 object = the_object; 55 } 56 } 57 | Popular Tags |