worked = addProperty(xPropContainer, "booleanValue", com.sun.star.beans.PropertyAttribute.REMOVEABLE, Boolean.TRUE);
assertTrue("Couldn't set an boolean property", worked);
System.out.println("...done");
System.out.println("Trying to add a date property");
worked = addProperty(xPropContainer, "dateValue", com.sun.star.beans.PropertyAttribute.REMOVEABLE, new Date());
assertTrue("Couldn't set an date property", worked);
System.out.println("...done");
System.out.println("trying to remove a read only Property");
try