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();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
65 protected boolean setEditorText(Property property, String text) throws Exception {
69 property.setValue(Property.UNKNOWN_VALUE);
74 property.setValue(null);
84 property.getTitle(),
88 // modify property
89 property.setValue(value);