Revision 532
Added by berkley about 24 years ago
src/edu/ucsb/nceas/metacat/ReplMessageHandler.java | ||
---|---|---|
34 | 34 |
{ |
35 | 35 |
private Vector updates = new Vector(); |
36 | 36 |
private Vector indivUpdate = new Vector(); |
37 |
private String server; |
|
37 | 38 |
String currentTag = new String(); |
38 | 39 |
|
39 | 40 |
public ReplMessageHandler() |
... | ... | |
77 | 78 |
if(currentTag.equals("date_updated")) |
78 | 79 |
{ |
79 | 80 |
indivUpdate.add(new String(ch, start, length)); |
81 |
indivUpdate.add(server); |
|
80 | 82 |
} |
83 |
if(currentTag.equals("server")) |
|
84 |
{ |
|
85 |
server = new String(ch, start, length); |
|
86 |
} |
|
81 | 87 |
} |
82 | 88 |
|
83 | 89 |
public Vector getResultVect() |
Also available in: Unified diff
no message