final Attribute attribute = holder.mAttribute;
final int position = holder.mPosition;
final MAttributeController attributeController = (MAttributeController) AttributeController
.getController();
if (attributeTableLength <= position) {
attributeController.addAttribute(mNode, attribute);
}
else if (NodeAttributeTableModel.getModel(mNode).getAttribute(position).getValue() != attribute
.getValue()) {
attributeController.setAttribute(mNode, position, attribute);
}