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

项目:javify    文件:Vio.java   
/**
 * Try to write value supposing that it implements self-streamable interfaces.
 * Return false if it does not or true on success.
 */
static boolean writeSelf(OutputStream output, Serializable value)
{
  // User defined write method is present.
  if (value instanceof CustomMarshal)
    {
      ((CustomMarshal) value).marshal((DataOutputStream) output);
      return true;
    }
  else if (value instanceof Streamable)
    {
      ((Streamable) value)._write(output);
      return true;
    }
  return false;
}
项目:jvm-stm    文件:Vio.java   
/**
 * Try to write value supposing that it implements self-streamable interfaces.
 * Return false if it does not or true on success.
 */
static boolean writeSelf(OutputStream output, Serializable value)
{
  // User defined write method is present.
  if (value instanceof CustomMarshal)
    {
      ((CustomMarshal) value).marshal((DataOutputStream) output);
      return true;
    }
  else if (value instanceof Streamable)
    {
      ((Streamable) value)._write(output);
      return true;
    }
  return false;
}
项目:JamVM-PH    文件:Vio.java   
/**
 * Try to write value supposing that it implements self-streamable interfaces.
 * Return false if it does not or true on success.
 */
static boolean writeSelf(OutputStream output, Serializable value)
{
  // User defined write method is present.
  if (value instanceof CustomMarshal)
    {
      ((CustomMarshal) value).marshal((DataOutputStream) output);
      return true;
    }
  else if (value instanceof Streamable)
    {
      ((Streamable) value)._write(output);
      return true;
    }
  return false;
}
项目:classpath    文件:Vio.java   
/**
 * Try to write value supposing that it implements self-streamable interfaces.
 * Return false if it does not or true on success.
 */
static boolean writeSelf(OutputStream output, Serializable value)
{
  // User defined write method is present.
  if (value instanceof CustomMarshal)
    {
      ((CustomMarshal) value).marshal((DataOutputStream) output);
      return true;
    }
  else if (value instanceof Streamable)
    {
      ((Streamable) value)._write(output);
      return true;
    }
  return false;
}
项目:OpenJSharp    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:openjdk-jdk10    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:openjdk9    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:Java8CN    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:lookaside_java-1.8.0-openjdk    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:jdk8u_corba    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:infobip-open-jdk-8    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:openjdk-source-code-learn    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:OLD-OpenJDK8    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:openjdk-orb    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);
项目:openjdk-icedtea7    文件:CustomMarshal.java   
/**
 * Marshal method has to be implemented by the Customized Marshal class.
 * This is the method invoked for Marshalling.
 *
 * @param os a DataOutputStream
 */
void marshal(DataOutputStream os);