KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gcc > org > omg > IIOP > ListenPoint


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.idl
8 * Wednesday, December 8, 2004 11:54:42 AM EST
9 */

10
11
12 // BiDirectional IIOP
13
public final class ListenPoint implements org.omg.CORBA.portable.IDLEntity JavaDoc
14 {
15   public String JavaDoc host = null;
16   public short port = (short)0;
17
18   public ListenPoint ()
19   {
20   } // ctor
21

22   public ListenPoint (String JavaDoc _host, short _port)
23   {
24     host = _host;
25     port = _port;
26   } // ctor
27

28 } // class ListenPoint
29
Popular Tags