Home | History | Annotate | Download | only in editor

Lines Matching refs:Property

11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
58 protected String getEditorText(Property property) throws Exception {
59 return getText(property);
63 protected boolean setEditorText(Property property, String text) throws Exception {
67 property.setValue(Property.UNKNOWN_VALUE);
76 property.getTitle(),
80 // modify property
81 property.setValue(value);