17 public Node[] getValue() {
19 StringTokenizer tokens;
22 if (RLreturn ==
null) {
23 rep = Browser.SendEventOut (nodeptr, offset, datasize, datatype,
command);
27 tokens =
new StringTokenizer (rep);
29 counttokens = tokens.countTokens();
30 retnodes =
new Node[counttokens];
33 while (mySize < counttokens) {
35 retnodes[mySize] =
new Node();
36 rep = tokens.nextToken();
37 retnodes[mySize].nodeptr = Integer.parseInt(rep);
47 public Node get1Value(
int index) {
51 Node[] MyNode = getValue();
53 if ((index > sizeof) || (index < 0)) {
54 System.out.println (
"EventOutMFNode.get1Value - index " + index +