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

x33g5p2x  于2022-01-26 转载在 其他  
字(4.6k)|赞(0)|评价(0)|浏览(207)

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

OutputStream.write_short介绍

暂无

代码示例

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

public static void
  write(org.omg.CORBA.portable.OutputStream out, short val)
  {
    out.write_short(val);
  }
}

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

public static void
  write(org.omg.CORBA.portable.OutputStream out, short val)
  {
    out.write_short(val);
  }
}

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

public static void write (final org.omg.CORBA.portable.OutputStream _out, short _s)
  {
    _out.write_short(_s);
  }
}

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

public static void write (final org.omg.CORBA.portable.OutputStream _out, short _s)
  {
    _out.write_short(_s);
  }
}

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

public static void write (final org.omg.CORBA.portable.OutputStream _out, short _s)
  {
    _out.write_short(_s);
  }
}

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

public static void write (final org.omg.CORBA.portable.OutputStream _out, short _s)
  {
    _out.write_short(_s);
  }
}

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

public static void
  write(org.omg.CORBA.portable.OutputStream out, short val)
  {
    out.write_short(val);
  }
}

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

public static void
  write(org.omg.CORBA.portable.OutputStream out, short val)
  {
    out.write_short(val);
  }
}

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

public static void
  write(org.omg.CORBA.portable.OutputStream out, short val)
  {
    out.write_short(val);
  }
}

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

public static void write (final org.omg.CORBA.portable.OutputStream _out, short _s)
  {
    _out.write_short(_s);
  }
}

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

public static void write (final org.omg.CORBA.portable.OutputStream _out, short _s)
  {
    _out.write_short(_s);
  }
}

代码示例来源:origin: apache/cxf

public void writeShort(Short s) throws CorbaBindingException {
  if (s == null) {
    stream.write_short((short)0);
  } else {
    stream.write_short(s.shortValue());
  }
}

代码示例来源:origin: org.jboss.narayana.blacktie/blacktie-idl-jacorb

public static void write (final org.omg.CORBA.portable.OutputStream out, final AtmiBroker.ServiceInfo s)
  {
    out.write_string(s.serviceName);
    out.write_short(s.poolSize);
    out.write_string(s.securityType);
  }
}

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

public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.IOP.Encoding value)
{
 ostream.write_short (value.format);
 ostream.write_octet (value.major_version);
 ostream.write_octet (value.minor_version);
}

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

public void
_write(org.omg.CORBA.portable.OutputStream out)
{
  super._write(out);
  out.write_short(max_backoffs);
  out.write_float(backoff_factor);
  out.write_ulong(base_interval_seconds);
}

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

public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.TimeBase.UtcT s)
  {
    out.write_ulonglong(s.time);
    out.write_ulong(s.inacclo);
    out.write_ushort(s.inacchi);
    out.write_short(s.tdf);
  }
}

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

public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.TimeBase.UtcT s)
  {
    out.write_ulonglong(s.time);
    out.write_ulong(s.inacclo);
    out.write_ushort(s.inacchi);
    out.write_short(s.tdf);
  }
}

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

public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.ValueMember value)
{
  ostream.write_string (value.name);
  ostream.write_string (value.id);
  ostream.write_string (value.defined_in);
  ostream.write_string (value.version);
  ostream.write_TypeCode (value.type);
  com.sun.org.omg.CORBA.IDLTypeHelper.write (ostream, value.type_def);
  ostream.write_short (value.access);
}

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

public static void write(org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.ValueMember value)
{
  ostream.write_string(value.name);
  ostream.write_string(value.id);
  ostream.write_string(value.defined_in);
  ostream.write_string(value.version);
  ostream.write_TypeCode(value.type);
  org.jboss.com.sun.org.omg.CORBA.IDLTypeHelper.write(ostream, value.type_def);
  ostream.write_short(value.access);
}

代码示例来源:origin: org.fudaa.business/dodico-corba

public static void write (org.omg.CORBA.portable.OutputStream ostream, org.fudaa.dodico.corba.sinavi3.Sinavi3ResultatOccupation value)
{
 ostream.write_long (value.type);
 ostream.write_long (value.numero);
 ostream.write_long (value.ecluseConcernee);
 ostream.write_long (value.refBassinee);
 ostream.write_double (value.heure);
 ostream.write_short (value.sens);
 ostream.write_long (value.nombreBateauxCategorie.length);
 for (int _i0 = 0;_i0 < value.nombreBateauxCategorie.length; ++_i0)
  org.fudaa.dodico.corba.base.EntierCourtHelper.write (ostream, value.nombreBateauxCategorie[_i0]);
}

相关文章