7879808182838485868788
dataIn.close(); setContent(null); setCompressed(false); } } catch (IOException ioe) { throw new OpenwireException(ioe); } finally { if (is != null) { try { is.close(); } catch (IOException e) {
104105106107108109110111112113
public boolean readBoolean() throws OpenwireException { initializeReading(); try { return this.dataIn.readBoolean(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
115116117118119120121122123124
public byte readByte() throws OpenwireException { initializeReading(); try { return this.dataIn.readByte(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
126127128129130131132133134135
public int readUnsignedByte() throws OpenwireException { initializeReading(); try { return this.dataIn.readUnsignedByte(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
137138139140141142143144145146
public short readShort() throws OpenwireException { initializeReading(); try { return this.dataIn.readShort(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
148149150151152153154155156157
public int readUnsignedShort() throws OpenwireException { initializeReading(); try { return this.dataIn.readUnsignedShort(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
159160161162163164165166167168
public char readChar() throws OpenwireException { initializeReading(); try { return this.dataIn.readChar(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
170171172173174175176177178179
public int readInt() throws OpenwireException { initializeReading(); try { return this.dataIn.readInt(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
181182183184185186187188189190
public long readLong() throws OpenwireException { initializeReading(); try { return this.dataIn.readLong(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
192193194195196197198199200201
public float readFloat() throws OpenwireException { initializeReading(); try { return this.dataIn.readFloat(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }