Home | History | Annotate | Download | only in string

Lines Matching refs:property

11 package org.eclipse.wb.internal.core.model.property.editor.string;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
16 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
17 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
26 * @coverage core.model.property.editor
46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
47 openDialog(propertyTable, property);
62 public String getText(Property property) throws Exception {
63 Object value = property.getValue();
76 protected String getEditorText(Property property) throws Exception {
77 return getText(property);
81 protected boolean setEditorText(Property property, String text) throws Exception {
82 property.setValue(text);
94 private void openDialog(PropertyTable propertyTable, Property property) throws Exception {
95 StringPropertyDialog dialog = new StringPropertyDialog(propertyTable.getShell(), property);