connectiondata.java

来自「jtapi for telephone」· Java 代码 · 共 28 行

JAVA
28
字号
package net.sourceforge.gjtapi.raw.remote.corba;

/**
* com/uforce/jtapi/generic/raw/remote/corba/ConnectionData.java
* Generated by the IDL-to-Java compiler (portable), version "3.0"
* from CorbaProvider.idl
* Thursday, November 16, 2000 1:38:18 o'clock PM EST
*/

public final class ConnectionData implements org.omg.CORBA.portable.IDLEntity
{
  public int state = (int)0;
  public String address = null;
  public boolean isLocal = false;
  public net.sourceforge.gjtapi.raw.remote.corba.TCData tcs[] = null;

  public ConnectionData ()
  {
  } // ctor      
  public ConnectionData (int _state, String _address, boolean _isLocal, net.sourceforge.gjtapi.raw.remote.corba.TCData[] _tcs)
  {
	state = _state;
	address = _address;
	isLocal = _isLocal;
	tcs = _tcs;
  } // ctor        
} // class ConnectionData

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?