{
public void execute()
{
String name = getAttributes().getValue("name");
String value = getAttributes().getValue("value");
Property property = new Property ();
property.setName(name);
property.setValue(value);
currentBlock.getProperties().add (property);
}