~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to gcov/org.eclipse.linuxtools.gcov.core/src/org/eclipse/linuxtools/internal/gcov/utils/BEDataInputStream.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-13 21:43:22 UTC
  • mfrom: (1.2.1) (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130513214322-6frgd9du1n0w2uo7
Tags: 1.2.1-1
* Team upload.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
         * (non-Javadoc)
35
35
         * @see java.io.DataInput#readShort()
36
36
         */
 
37
        @Override
37
38
        public final short readShort() throws IOException
38
39
        {
39
40
                return in.readShort();
43
44
         * (non-Javadoc)
44
45
         * @see java.io.DataInput#readUnsignedShort()
45
46
         */
 
47
        @Override
46
48
        public final int readUnsignedShort() throws IOException
47
49
        {
48
50
                return in.readUnsignedShort();
52
54
         * (non-Javadoc)
53
55
         * @see java.io.DataInput#readChar()
54
56
         */
 
57
        @Override
55
58
        public final char readChar() throws IOException
56
59
        {
57
60
                return in.readChar();
61
64
         * (non-Javadoc)
62
65
         * @see java.io.DataInput#readInt()
63
66
         */
 
67
        @Override
64
68
        public final int readInt() throws IOException
65
69
        {
66
70
                return in.readInt();
70
74
         * (non-Javadoc)
71
75
         * @see java.io.DataInput#readLong()
72
76
         */
 
77
        @Override
73
78
        public final long readLong() throws IOException
74
79
        {
75
80
                in.readFully(buffer, 0, 8);
87
92
         * (non-Javadoc)
88
93
         * @see java.io.DataInput#readFloat()
89
94
         */
 
95
        @Override
90
96
        public final float readFloat() throws IOException
91
97
        {
92
98
                return Float.intBitsToFloat(readInt());
96
102
         * (non-Javadoc)
97
103
         * @see java.io.DataInput#readDouble()
98
104
         */
 
105
        @Override
99
106
        public final double readDouble() throws IOException
100
107
        {
101
108
                return Double.longBitsToDouble(readLong());
105
112
         * (non-Javadoc)
106
113
         * @see java.io.DataInput#readBoolean()
107
114
         */
 
115
        @Override
108
116
        public boolean readBoolean() throws IOException {
109
117
                return in.readBoolean();
110
118
        }
113
121
         * (non-Javadoc)
114
122
         * @see java.io.DataInput#readByte()
115
123
         */
 
124
        @Override
116
125
        public byte readByte() throws IOException {
117
126
                return in.readByte();
118
127
        }
121
130
         * (non-Javadoc)
122
131
         * @see java.io.DataInput#readFully(byte[])
123
132
         */
 
133
        @Override
124
134
        public void readFully(byte[] b) throws IOException {
125
135
                in.readFully(b);
126
136
        }
129
139
         * (non-Javadoc)
130
140
         * @see java.io.DataInput#readFully(byte[], int, int)
131
141
         */
 
142
        @Override
132
143
        public void readFully(byte[] b, int off, int len) throws IOException {
133
144
                in.readFully(b,off,len);
134
145
        }
137
148
         * (non-Javadoc)
138
149
         * @see java.io.DataInput#readLine()
139
150
         */
 
151
        @Override
140
152
        @Deprecated
141
153
        public String readLine() throws IOException {
142
154
                return in.readLine();
146
158
         * (non-Javadoc)
147
159
         * @see java.io.DataInput#readUTF()
148
160
         */
 
161
        @Override
149
162
        public String readUTF() throws IOException {
150
163
                return in.readUTF();
151
164
        }
154
167
         * (non-Javadoc)
155
168
         * @see java.io.DataInput#readUnsignedByte()
156
169
         */
 
170
        @Override
157
171
        public int readUnsignedByte() throws IOException {
158
172
                return in.readUnsignedByte();
159
173
        }
162
176
         * (non-Javadoc)
163
177
         * @see java.io.DataInput#skipBytes(int)
164
178
         */
 
179
        @Override
165
180
        public int skipBytes(int n) throws IOException {
166
181
                return in.skipBytes(n);
167
182
        }