6 import java.io.BufferedReader;
7 import java.io.PrintWriter;
8 import java.io.IOException;
19 public int getValue() {
24 public void setValue(
int value) {
31 sfInt32.__updateRead();
32 value = sfInt32.value;
36 public void setValue(
SFInt32 sfInt32) {
37 sfInt32.__updateRead();
38 value = sfInt32.value;
43 public String toString() {
45 return String.valueOf(value);
48 public void __fromPerl(BufferedReader in)
throws IOException {
51 value = Integer.parseInt(in.readLine());
54 public void __toPerl(PrintWriter out)
throws IOException {