org.omg.CORBA.portable.InputStream.read_TypeCode()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(9.0k)|赞(0)|评价(0)|浏览(141)

本文整理了Java中org.omg.CORBA.portable.InputStream.read_TypeCode()方法的一些代码示例,展示了InputStream.read_TypeCode()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。InputStream.read_TypeCode()方法的具体详情如下:
包路径:org.omg.CORBA.portable.InputStream
类名称:InputStream
方法名:read_TypeCode

InputStream.read_TypeCode介绍

暂无

代码示例

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

/**
 * Reads from <code>input</code> and initalizes the value in
 * this <code>TypeCodeHolder</code> object
 * with the unmarshalled data.
 *
 * @param input the InputStream containing CDR formatted data from the wire
 */
public void _read(InputStream input) {
  value = input.read_TypeCode();
}

代码示例来源:origin: org.jacorb/jacorb

/**
 * Operation read_TypeCode
 */
public org.omg.CORBA.TypeCode read_TypeCode()
{
  return delegate.read_TypeCode();
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public static org.omg.CORBA.StructMember read (org.omg.CORBA.portable.InputStream istream)
{
  // _CHANGED_
  //com.sun.org.omg.CORBA.StructMember value = new com.sun.org.omg.CORBA.StructMember ();
  org.omg.CORBA.StructMember value = new org.omg.CORBA.StructMember ();
  value.name = istream.read_string ();
  value.type = istream.read_TypeCode ();
  value.type_def = com.sun.org.omg.CORBA.IDLTypeHelper.read (istream);
  return value;
}

代码示例来源:origin: org.apache.yoko/yoko-spec-corba

public static StructMember
read(org.omg.CORBA.portable.InputStream in)
{
  StructMember _ob_v = new StructMember();
  _ob_v.name = IdentifierHelper.read(in);
  _ob_v.type = in.read_TypeCode();
  _ob_v.type_def = IDLTypeHelper.read(in);
  return _ob_v;
}

代码示例来源:origin: org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec

public static org.omg.CORBA.StructMember read(org.omg.CORBA.portable.InputStream istream)
{
  // _CHANGED_
  // org.jboss.com.sun.org.omg.CORBA.StructMember value = new org.jboss.com.sun.org.omg.CORBA.StructMember ();
  org.omg.CORBA.StructMember value = new org.omg.CORBA.StructMember();
  value.name = istream.read_string();
  value.type = istream.read_TypeCode();
  value.type_def = org.jboss.com.sun.org.omg.CORBA.IDLTypeHelper.read(istream);
  return value;
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public static org.omg.CORBA.StructMember read (org.omg.CORBA.portable.InputStream istream)
{
 org.omg.CORBA.StructMember value = new org.omg.CORBA.StructMember ();
 value.name = istream.read_string ();
 value.type = istream.read_TypeCode ();
 value.type_def = org.omg.CORBA.IDLTypeHelper.read (istream);
 return value;
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public static org.omg.CORBA.ParameterDescription read (org.omg.CORBA.portable.InputStream istream)
{
 org.omg.CORBA.ParameterDescription value = new org.omg.CORBA.ParameterDescription ();
 value.name = istream.read_string ();
 value.type = istream.read_TypeCode ();
 value.type_def = org.omg.CORBA.IDLTypeHelper.read (istream);
 value.mode = org.omg.CORBA.ParameterModeHelper.read (istream);
 return value;
}

代码示例来源:origin: jboss/jboss-javaee-specs

public static org.jboss.com.sun.org.omg.CORBA.ParameterDescription read(org.omg.CORBA.portable.InputStream istream)
{
  org.jboss.com.sun.org.omg.CORBA.ParameterDescription value = new org.jboss.com.sun.org.omg.CORBA.ParameterDescription();
  value.name = istream.read_string();
  value.type = istream.read_TypeCode();
  value.type_def = org.jboss.com.sun.org.omg.CORBA.IDLTypeHelper.read(istream);
  value.mode = org.jboss.com.sun.org.omg.CORBA.ParameterModeHelper.read(istream);
  return value;
}

代码示例来源:origin: JacORB/JacORB

public static org.omg.CORBA.UnionMember read (final org.omg.CORBA.portable.InputStream in)
{
  org.omg.CORBA.UnionMember result = new org.omg.CORBA.UnionMember();
  result.name=in.read_string();
  result.label=in.read_any();
  result.type=in.read_TypeCode();
  result.type_def=org.omg.CORBA.IDLTypeHelper.read(in);
  return result;
}
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CORBA.UnionMember s)

代码示例来源:origin: org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec

public static org.jboss.com.sun.org.omg.CORBA.ParameterDescription read(org.omg.CORBA.portable.InputStream istream)
{
  org.jboss.com.sun.org.omg.CORBA.ParameterDescription value = new org.jboss.com.sun.org.omg.CORBA.ParameterDescription();
  value.name = istream.read_string();
  value.type = istream.read_TypeCode();
  value.type_def = org.jboss.com.sun.org.omg.CORBA.IDLTypeHelper.read(istream);
  value.mode = org.jboss.com.sun.org.omg.CORBA.ParameterModeHelper.read(istream);
  return value;
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public static com.sun.org.omg.CORBA.ParameterDescription read (org.omg.CORBA.portable.InputStream istream)
{
  com.sun.org.omg.CORBA.ParameterDescription value = new com.sun.org.omg.CORBA.ParameterDescription ();
  value.name = istream.read_string ();
  value.type = istream.read_TypeCode ();
  value.type_def = com.sun.org.omg.CORBA.IDLTypeHelper.read (istream);
  value.mode = com.sun.org.omg.CORBA.ParameterModeHelper.read (istream);
  return value;
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public static com.sun.org.omg.CORBA.ExceptionDescription read (org.omg.CORBA.portable.InputStream istream)
{
  com.sun.org.omg.CORBA.ExceptionDescription value = new com.sun.org.omg.CORBA.ExceptionDescription ();
  value.name = istream.read_string ();
  value.id = istream.read_string ();
  value.defined_in = istream.read_string ();
  value.version = istream.read_string ();
  value.type = istream.read_TypeCode ();
  return value;
}

代码示例来源:origin: org.jacorb/jacorb-omgapi

public static org.omg.CORBA.ExceptionDescription read (final org.omg.CORBA.portable.InputStream in)
{
  org.omg.CORBA.ExceptionDescription result = new org.omg.CORBA.ExceptionDescription();
  result.name=in.read_string();
  result.id=in.read_string();
  result.defined_in=in.read_string();
  result.version=in.read_string();
  result.type=in.read_TypeCode();
  return result;
}
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CORBA.ExceptionDescription s)

代码示例来源:origin: org.jacorb/jacorb-omgapi

public static org.omg.CORBA.TypeDescription read (final org.omg.CORBA.portable.InputStream in)
{
  org.omg.CORBA.TypeDescription result = new org.omg.CORBA.TypeDescription();
  result.name=in.read_string();
  result.id=in.read_string();
  result.defined_in=in.read_string();
  result.version=in.read_string();
  result.type=in.read_TypeCode();
  return result;
}
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CORBA.TypeDescription s)

代码示例来源:origin: JacORB/JacORB

public static org.omg.CORBA.TypeDescription read (final org.omg.CORBA.portable.InputStream in)
{
  org.omg.CORBA.TypeDescription result = new org.omg.CORBA.TypeDescription();
  result.name=in.read_string();
  result.id=in.read_string();
  result.defined_in=in.read_string();
  result.version=in.read_string();
  result.type=in.read_TypeCode();
  return result;
}
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CORBA.TypeDescription s)

代码示例来源:origin: JacORB/JacORB

public static org.omg.CORBA.ExceptionDescription read (final org.omg.CORBA.portable.InputStream in)
{
  org.omg.CORBA.ExceptionDescription result = new org.omg.CORBA.ExceptionDescription();
  result.name=in.read_string();
  result.id=in.read_string();
  result.defined_in=in.read_string();
  result.version=in.read_string();
  result.type=in.read_TypeCode();
  return result;
}
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CORBA.ExceptionDescription s)

代码示例来源:origin: org.jacorb/jacorb-omgapi

public static org.omg.CORBA.AttributeDescription read (final org.omg.CORBA.portable.InputStream in)
{
  org.omg.CORBA.AttributeDescription result = new org.omg.CORBA.AttributeDescription();
  result.name=in.read_string();
  result.id=in.read_string();
  result.defined_in=in.read_string();
  result.version=in.read_string();
  result.type=in.read_TypeCode();
  result.mode=org.omg.CORBA.AttributeModeHelper.read(in);
  return result;
}
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CORBA.AttributeDescription s)

代码示例来源:origin: org.jacorb/jacorb-omgapi

public static org.omg.CORBA.ConstantDescription read (final org.omg.CORBA.portable.InputStream in)
{
  org.omg.CORBA.ConstantDescription result = new org.omg.CORBA.ConstantDescription();
  result.name=in.read_string();
  result.id=in.read_string();
  result.defined_in=in.read_string();
  result.version=in.read_string();
  result.type=in.read_TypeCode();
  result.value=in.read_any();
  return result;
}
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CORBA.ConstantDescription s)

代码示例来源:origin: JacORB/JacORB

public static org.omg.CORBA.ConstantDescription read (final org.omg.CORBA.portable.InputStream in)
{
  org.omg.CORBA.ConstantDescription result = new org.omg.CORBA.ConstantDescription();
  result.name=in.read_string();
  result.id=in.read_string();
  result.defined_in=in.read_string();
  result.version=in.read_string();
  result.type=in.read_TypeCode();
  result.value=in.read_any();
  return result;
}
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CORBA.ConstantDescription s)

代码示例来源:origin: jboss/jboss-javaee-specs

public static org.jboss.com.sun.org.omg.CORBA.AttributeDescription read(org.omg.CORBA.portable.InputStream istream)
{
  org.jboss.com.sun.org.omg.CORBA.AttributeDescription value = new org.jboss.com.sun.org.omg.CORBA.AttributeDescription();
  value.name = istream.read_string();
  value.id = istream.read_string();
  value.defined_in = istream.read_string();
  value.version = istream.read_string();
  value.type = istream.read_TypeCode();
  value.mode = org.jboss.com.sun.org.omg.CORBA.AttributeModeHelper.read(istream);
  return value;
}

相关文章