Java Code Examples for org.omg.CORBA.portable.InputStream#read_fixed()
The following examples show how to use
org.omg.CORBA.portable.InputStream#read_fixed() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: FixedHolder.java From jdk1.8-source-analysis with Apache License 2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 2
Source File: FixedHolder.java From TencentKona-8 with GNU General Public License v2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 3
Source File: FixedHolder.java From jdk8u60 with GNU General Public License v2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 4
Source File: FixedHolder.java From JDKSourceCode1.8 with MIT License | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 5
Source File: FixedHolder.java From openjdk-jdk8u with GNU General Public License v2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 6
Source File: FixedHolder.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 7
Source File: FixedHolder.java From openjdk-jdk9 with GNU General Public License v2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the {@code InputStream} to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 8
Source File: FixedHolder.java From Java8CN with Apache License 2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 9
Source File: FixedHolder.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 10
Source File: FixedHolder.java From openjdk-8-source with GNU General Public License v2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }
Example 11
Source File: FixedHolder.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * Read a fixed point value from the input stream and store it in * the value member. * * @param input the <code>InputStream</code> to read from. */ public void _read(InputStream input) { value = input.read_fixed(); }