Java 类org.omg.CORBA.NameValuePairHelper 实例源码

项目:javify    文件:NameValuePairHolder.java   
/**
 * Read the name value pair.
 */
public void _read(InputStream input)
{
  value = NameValuePairHelper.read(input);
}
项目:javify    文件:NameValuePairHolder.java   
/**
 * Return the typecode of the name value pair.
 */
public TypeCode _type()
{
  return NameValuePairHelper.type();
}
项目:javify    文件:NameValuePairHolder.java   
/**
 * Write the name value pair.
 */
public void _write(OutputStream output)
{
  NameValuePairHelper.write(output, value);
}
项目:jvm-stm    文件:NameValuePairHolder.java   
/**
 * Read the name value pair.
 */
public void _read(InputStream input)
{
  value = NameValuePairHelper.read(input);
}
项目:jvm-stm    文件:NameValuePairHolder.java   
/**
 * Return the typecode of the name value pair.
 */
public TypeCode _type()
{
  return NameValuePairHelper.type();
}
项目:jvm-stm    文件:NameValuePairHolder.java   
/**
 * Write the name value pair.
 */
public void _write(OutputStream output)
{
  NameValuePairHelper.write(output, value);
}
项目:JamVM-PH    文件:NameValuePairHolder.java   
/**
 * Read the name value pair.
 */
public void _read(InputStream input)
{
  value = NameValuePairHelper.read(input);
}
项目:JamVM-PH    文件:NameValuePairHolder.java   
/**
 * Return the typecode of the name value pair.
 */
public TypeCode _type()
{
  return NameValuePairHelper.type();
}
项目:JamVM-PH    文件:NameValuePairHolder.java   
/**
 * Write the name value pair.
 */
public void _write(OutputStream output)
{
  NameValuePairHelper.write(output, value);
}
项目:classpath    文件:NameValuePairHolder.java   
/**
 * Read the name value pair.
 */
public void _read(InputStream input)
{
  value = NameValuePairHelper.read(input);
}
项目:classpath    文件:NameValuePairHolder.java   
/**
 * Return the typecode of the name value pair.
 */
public TypeCode _type()
{
  return NameValuePairHelper.type();
}
项目:classpath    文件:NameValuePairHolder.java   
/**
 * Write the name value pair.
 */
public void _write(OutputStream output)
{
  NameValuePairHelper.write(output, value);
}