1 package gcc.org.omg.IIOP;2 3 4 /**5 * gcc/org/omg/IIOP/ListenPoint.java .6 * Generated by the IDL-to-Java compiler (portable), version "3.1"7 * from ../idl/IIOP.idl8 * Wednesday, December 8, 2004 11:54:42 AM EST9 */10 11 12 // BiDirectional IIOP13 public final class ListenPoint implements org.omg.CORBA.portable.IDLEntity 14 {15 public String host = null;16 public short port = (short)0;17 18 public ListenPoint ()19 {20 } // ctor21 22 public ListenPoint (String _host, short _port)23 {24 host = _host;25 port = _port;26 } // ctor27 28 } // class ListenPoint29