495496497498499500501502
} else { clearEmpty(); } clearAttributeUpdate(); for (KeyValueUpdate field : message.getAttributeUpdate()) { addAttributeUpdate(new KeyValueUpdateImpl(field)); } }
533534535536537538539
} } @Override public KeyValueUpdateImpl getAttributeUpdate(int n) { return new KeyValueUpdateImpl(attributeUpdate.get(n)); }
538539540541542543544
return new KeyValueUpdateImpl(attributeUpdate.get(n)); } @Override public void setAttributeUpdate(int n, KeyValueUpdate message) { this.attributeUpdate.set(n, new KeyValueUpdateImpl(message)); }
548549550551552553554
return attributeUpdate.size(); } @Override public void addAttributeUpdate(KeyValueUpdate message) { this.attributeUpdate.add(new KeyValueUpdateImpl(message)); }
609610611612613614615616
for (String field : message.getEnd()) { addEnd(field); } clearChange(); for (KeyValueUpdate field : message.getChange()) { addChange(new KeyValueUpdateImpl(field)); } }
682683684685686687688
} } @Override public KeyValueUpdateImpl getChange(int n) { return new KeyValueUpdateImpl(change.get(n)); }
687688689690691692693
return new KeyValueUpdateImpl(change.get(n)); } @Override public void setChange(int n, KeyValueUpdate message) { this.change.set(n, new KeyValueUpdateImpl(message)); }
697698699700701702703
return change.size(); } @Override public void addChange(KeyValueUpdate message) { this.change.add(new KeyValueUpdateImpl(message)); }