KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > activation > EndPointInfo


1 package com.sun.corba.se.spi.activation;
2
3
4 /**
5 * com/sun/corba/se/spi/activation/EndPointInfo.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl
8 * Saturday, February 9, 2008 2:04:39 AM PST
9 */

10
11 public final class EndPointInfo implements org.omg.CORBA.portable.IDLEntity JavaDoc
12 {
13   public String JavaDoc endpointType = null;
14   public int port = (int)0;
15
16   public EndPointInfo ()
17   {
18   } // ctor
19

20   public EndPointInfo (String JavaDoc _endpointType, int _port)
21   {
22     endpointType = _endpointType;
23     port = _port;
24   } // ctor
25

26 } // class EndPointInfo
27
Popular Tags