OpenSplice Java FACE API  v6.x
OpenSplice Future Airborne Capability Environment (FACE) Java API
LongHolder.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;
12 
13 final public class LongHolder implements us.opengroup.FACE.portable.Streamable {
14 
15  public long value;
16 
17  public LongHolder() {
18  }
19 
20  public LongHolder(long initial) {
21  value = initial;
22  }
23 
25 // value = is.read_longlong();
26  }
27 
29 // os.write_longlong(value);
30  }
31 
33  //return org.omg.CORBA.ORB.init().get_primitive_tc(TCKind.tk_longlong);
34  return null;
35  }
36 
37 }
us.opengroup.FACE.TypeCode _type()
Definition: LongHolder.java:32
void _write(us.opengroup.FACE.portable.OutputStream os)
Definition: LongHolder.java:28
This is a typed class which will be generated by idlpp.
Definition: TS.java:25
void _read(us.opengroup.FACE.portable.InputStream is)
Definition: LongHolder.java:24