OpenSplice Java FACE API  v6.x
OpenSplice Future Airborne Capability Environment (FACE) Java API
OutputStream.java
Go to the documentation of this file.
1 // Product produced under DoD SENSIAC contract HC104705D4000 under
2 // the sponsorship of the Defense Technical Information Center,
3 // ATTN: DTIC-AI, 8723 John J. Kingman Rd., Ste 0944, Fort Belvoir, VA
4 // 22060-6218. SENSIAC is a DoD Information Analysis Center Sponsored
5 // by the Defense Technical Information Center.
6 //
7 // HANDLING AND DESTRUCTION NOTICE - Comply with distribution statement
8 // and destroy by any method that will prevent disclosure of
9 // contents or reconstruction of the document.
10 
11 package us.opengroup.FACE.portable;
12 
13 abstract public class OutputStream {
14 
15  public void write_value(java.io.Serializable value) {
16  throw new us.opengroup.FACE.NO_IMPLEMENT();
17  }
18 
19  public void write_value(java.io.Serializable value,
20  java.lang.String rep_id) {
21  throw new us.opengroup.FACE.NO_IMPLEMENT();
22  }
23 
24  public void write_value(java.io.Serializable value, Class clz) {
25  throw new us.opengroup.FACE.NO_IMPLEMENT();
26  }
27 
28  public void write_value(java.io.Serializable value,
30  throw new us.opengroup.FACE.NO_IMPLEMENT();
31  }
32 
33  public void write_abstract_interface(java.lang.Object object) {
34  throw new us.opengroup.FACE.NO_IMPLEMENT();
35  }
36 
37 }
void write_value(java.io.Serializable value, us.opengroup.FACE.portable.BoxedValueHelper factory)
void write_value(java.io.Serializable value, Class clz)
void write_value(java.io.Serializable value)
void write_value(java.io.Serializable value, java.lang.String rep_id)
void write_abstract_interface(java.lang.Object object)