1 6 7 package SOFA.Connector.ECG.Profiles; 8 9 public class CORBAProfile extends SOFA.Connector.TaggedProfile { 10 11 public String IOR; 12 13 public CORBAProfile () { 14 super("CORBA"); 15 } 16 17 public CORBAProfile (String IOR) { 18 super("CORBA"); 19 this.IOR = IOR; 20 } 21 22 public SOFA.Connector.TaggedProfile duplicate() { 23 return new CORBAProfile(IOR); 24 } 25 } 26 27 | Popular Tags |