Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGoulwen Le Fur2013-03-06 16:53:36 +0000
committerGoulwen Le Fur2013-03-06 16:53:36 +0000
commitef2e56a2d8fc25c3d669676d6b6fc4386b4c42b2 (patch)
treed3ee237b46e681e8142732b25e54d21352262493
parent8aab176ee94ef281ec75933aebf3dcbd66bc466c (diff)
downloadorg.eclipse.eef-ef2e56a2d8fc25c3d669676d6b6fc4386b4c42b2.tar.gz
org.eclipse.eef-ef2e56a2d8fc25c3d669676d6b6fc4386b4c42b2.tar.xz
org.eclipse.eef-ef2e56a2d8fc25c3d669676d6b6fc4386b4c42b2.zip
UPDATED: Open ReferencesTable disabling in order to allow button disabling
-rw-r--r--plugins/org.eclipse.emf.eef.runtime/src/org/eclipse/emf/eef/runtime/ui/widgets/ReferencesTable.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.emf.eef.runtime/src/org/eclipse/emf/eef/runtime/ui/widgets/ReferencesTable.java b/plugins/org.eclipse.emf.eef.runtime/src/org/eclipse/emf/eef/runtime/ui/widgets/ReferencesTable.java
index 3b8a61796..2fd2193c1 100644
--- a/plugins/org.eclipse.emf.eef.runtime/src/org/eclipse/emf/eef/runtime/ui/widgets/ReferencesTable.java
+++ b/plugins/org.eclipse.emf.eef.runtime/src/org/eclipse/emf/eef/runtime/ui/widgets/ReferencesTable.java
@@ -100,22 +100,22 @@ public class ReferencesTable implements IPropertiesFilteredWidget {
/**
* Button that adds an element.
*/
- private Button addButton;
+ protected Button addButton;
/**
* Button that removes an element.
*/
- private Button removeButton;
+ protected Button removeButton;
/**
* button that moves the element up.
*/
- private Button upButton;
+ protected Button upButton;
/**
* button that moves the element down.
*/
- private Button downButton;
+ protected Button downButton;
/**
* Listener for the add button.

Back to the top