Ejemplo n.º 1
0
  private void readText(TGBeat beat) {
    TGText text = this.factory.newText();

    // leo el texto
    text.setValue(readUnsignedByteString());

    beat.setText(text);
  }
Ejemplo n.º 2
0
 private void readText(TGBeat beat) throws IOException {
   TGText text = getFactory().newText();
   text.setValue(readStringByteSizeOfInteger());
   beat.setText(text);
 }
Ejemplo n.º 3
0
 private void writeText(TGText text) {
   // escribo el texto
   writeUnsignedByteString(text.getValue());
 }