}
public void setAttributeValue( String type, int number, String value )
{
SWTBotTree tree = bot.tree( 0 );
// click to finish editing of value
tree.getTreeItem( type ).click();
tree.getTreeItem( type ).doubleClick();
SWTBotText text = bot.text( "" );
text.setText( value );
// click to finish editing of value
tree.getTreeItem( type ).click();
}