Home | History | Annotate | Download | only in presentation

Lines Matching refs:PropertyTable

22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
53 public final void hide(PropertyTable propertyTable, Property property) {
54 Control control = m_propertyToControl.remove(propertyTable, property);
61 public final int show(PropertyTable propertyTable,
68 Control control = m_propertyToControl.get(propertyTable, property);
70 control = createControl(propertyTable, property);
82 public void setSelection(PropertyTable propertyTable, Property property, boolean selected) {
83 Button button = (Button) m_propertyToControl.get(propertyTable, property);
97 private Control createControl(final PropertyTable propertyTable, final Property property) {
98 Control control = createControlImpl(propertyTable, property);
99 m_propertyToControl.put(propertyTable, property, control);
104 m_propertyToControl.remove(propertyTable, property);
111 propertyTable.deactivateEditor(true);
112 propertyTable.setActiveProperty(property);
115 // return focus on propertyTable after click
119 propertyTable.forceFocus();
127 getPresentation().onClick(propertyTable, property);
129 propertyTable.deactivateEditor(false);
130 propertyTable.handleException(e);
140 protected Control createControlImpl(final PropertyTable propertyTable, final Property property) {
141 Button button = new Button(propertyTable, getPresentation().getStyle());
210 private final Map<Pair<PropertyTable, Property>, Control> m_map = Maps.newHashMap();
212 void put(PropertyTable propertyTable, Property property, Control control) {
213 m_map.put(Pair.create(propertyTable, property), control);
216 Control remove(PropertyTable propertyTable, Property property) {
217 return m_map.remove(Pair.create(propertyTable, property));
220 Control get(PropertyTable propertyTable, Property property) {
221 return m_map.get(Pair.create(propertyTable, property));