Searched refs:propertyTable (Results 1 - 14 of 14) sorted by relevance

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentation.java58 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { argument
59 m_impl.setSelection(propertyTable, property, selected);
68 public final int show(final PropertyTable propertyTable, argument
74 return m_impl.show(propertyTable, property, x, y, width, height);
78 public final void hide(PropertyTable propertyTable, Property property) { argument
79 m_impl.hide(propertyTable, property);
113 protected abstract void onClick(PropertyTable propertyTable, Property property) throws Exception; argument
117 public void click(PropertyTable propertyTable, Property property) throws Exception { argument
120 onClick(propertyTable, property);
H A DButtonPropertyEditorPresentationImpl.java53 public final void hide(PropertyTable propertyTable, Property property) { argument
54 Control control = m_propertyToControl.remove(propertyTable, property);
61 public final int show(PropertyTable propertyTable, argument
68 Control control = m_propertyToControl.get(propertyTable, property);
70 control = createControl(propertyTable, property);
82 public void setSelection(PropertyTable propertyTable, Property property, boolean selected) { argument
83 Button button = (Button) m_propertyToControl.get(propertyTable, property);
97 private Control createControl(final PropertyTable propertyTable, final Property property) { argument
98 Control control = createControlImpl(propertyTable, property);
99 m_propertyToControl.put(propertyTable, propert
140 createControlImpl(final PropertyTable propertyTable, final Property property) argument
212 put(PropertyTable propertyTable, Property property, Control control) argument
216 remove(PropertyTable propertyTable, Property property) argument
220 get(PropertyTable propertyTable, Property property) argument
[all...]
H A DPropertyEditorPresentation.java30 public abstract int show(PropertyTable propertyTable, argument
40 public abstract void hide(PropertyTable propertyTable, Property property); argument
H A DButtonPropertyEditorPresentationImplMac.java43 protected final Control createControlImpl(final PropertyTable propertyTable, Property property) { argument
44 CFlatButton button = new CFlatButton(propertyTable, SWT.NONE);
51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { argument
52 CFlatButton button = (CFlatButton) m_propertyToControl.get(propertyTable, property);
H A DCompoundPropertyEditorPresentation.java49 public int show(PropertyTable propertyTable, argument
57 int presentationWidth = presentation.show(propertyTable, property, x, y, width, height);
65 public void hide(PropertyTable propertyTable, Property property) { argument
67 presentation.hide(propertyTable, property);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DAbstractComboBoxPropertyEditor.java49 public final boolean activate(final PropertyTable propertyTable, argument
52 m_combo = new CComboBox(propertyTable, SWT.NONE);
60 handleKeyPressed(propertyTable, property, e);
66 propertyTable.deactivateEditor(true);
72 propertyTable.deactivateEditor(true);
91 private void handleKeyPressed(PropertyTable propertyTable, Property property, KeyEvent e) { argument
93 propertyTable.deactivateEditor(false);
96 propertyTable.deactivateEditor(true);
97 propertyTable.navigate(e);
102 public final void deactivate(PropertyTable propertyTable, Propert argument
112 toProperty(PropertyTable propertyTable, Property property) argument
126 keyDown(PropertyTable propertyTable, Property property, KeyEvent event) argument
[all...]
H A DAbstractTextPropertyEditor.java67 PropertyTable propertyTable) {
70 m_propertyTable = propertyTable;
158 public boolean activate(final PropertyTable propertyTable, final Property property, Point location) argument
162 m_textControl = new Text(propertyTable, SWT.NONE);
176 propertyTable);
192 handleKeyPressed(propertyTable, property, e);
194 propertyTable.deactivateEditor(false);
195 propertyTable.handleException(ex);
203 propertyTable.deactivateEditor(true);
219 public final void deactivate(PropertyTable propertyTable, Propert argument
61 ImmediateProposalAdapter( Text control, IControlContentAdapter controlContentAdapter, IContentProposalProvider proposalProvider, KeyStroke keyStroke, char[] autoActivationCharacters, PropertyTable propertyTable) argument
236 keyDown(PropertyTable propertyTable, Property property, KeyEvent event) argument
267 handleKeyPressed(PropertyTable propertyTable, Property property, KeyEvent e) argument
[all...]
H A DAbstractComboPropertyEditor.java45 public boolean activate(final PropertyTable propertyTable, final Property property, Point location) argument
49 m_combo = new CCombo3(propertyTable, SWT.NONE);
60 propertyTable.deactivateEditor(true);
67 toProperty(propertyTable, property, index);
74 propertyTable.deactivateEditor(false);
82 propertyTable.handleException(e);
83 propertyTable.deactivateEditor(false);
94 toProperty(propertyTable, property, index);
114 public final void deactivate(PropertyTable propertyTable, Property property, boolean save) { argument
145 private void toProperty(PropertyTable propertyTable, Propert argument
[all...]
H A DPropertyEditor.java69 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument
90 public void deactivate(PropertyTable propertyTable, Property property, boolean save) { argument
105 public void keyDown(PropertyTable propertyTable, Property property, KeyEvent event) argument
H A DTextDialogPropertyEditor.java34 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
50 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument
H A DBooleanObjectPropertyEditor.java84 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument
H A DBooleanPropertyEditor.java82 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
H A DStringPropertyEditor.java46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
47 openDialog(propertyTable, property);
94 private void openDialog(PropertyTable propertyTable, Property property) throws Exception { argument
95 StringPropertyDialog dialog = new StringPropertyDialog(propertyTable.getShell(), property);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DComplexProperty.java194 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument

Completed in 89 milliseconds