diff options
Diffstat (limited to 'java/src/IceGridGUI/Application/PropertiesField.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/PropertiesField.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/PropertiesField.java b/java/src/IceGridGUI/Application/PropertiesField.java index f5e84bf10ff..5463683195e 100755 --- a/java/src/IceGridGUI/Application/PropertiesField.java +++ b/java/src/IceGridGUI/Application/PropertiesField.java @@ -77,6 +77,7 @@ public class PropertiesField extends JTable public void setProperties(java.util.List properties, java.util.List adapters, + java.util.List logProps, Utils.Resolver resolver, boolean editable) { _editable = editable; @@ -99,6 +100,15 @@ public class PropertiesField extends JTable } } + if(logProps != null) + { + java.util.Iterator p = logProps.iterator(); + while(p.hasNext()) + { + hiddenPropertyNames.add(p.next()); + } + } + // // Transform list into vector of vectors // @@ -174,7 +184,6 @@ public class PropertiesField extends JTable cr.setOpaque(_editable); } - public java.util.LinkedList getProperties() { assert _editable; |