diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-05-04 16:15:21 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-05-04 16:15:21 +0000 |
commit | 87ed29e743f1c53e01878259a2c8ba1b352d3933 (patch) | |
tree | cf7de9d5ef8ac0362839c6122cad9d5217867e7f /java/src/IceGridGUI/Application/PropertySetParent.java | |
parent | Fixed typo. (diff) | |
download | ice-87ed29e743f1c53e01878259a2c8ba1b352d3933.tar.bz2 ice-87ed29e743f1c53e01878259a2c8ba1b352d3933.tar.xz ice-87ed29e743f1c53e01878259a2c8ba1b352d3933.zip |
Better PropertySets support
Diffstat (limited to 'java/src/IceGridGUI/Application/PropertySetParent.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/PropertySetParent.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/java/src/IceGridGUI/Application/PropertySetParent.java b/java/src/IceGridGUI/Application/PropertySetParent.java new file mode 100755 index 00000000000..15df0df9f34 --- /dev/null +++ b/java/src/IceGridGUI/Application/PropertySetParent.java @@ -0,0 +1,27 @@ +// **********************************************************************
+//
+// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+package IceGridGUI.Application;
+
+import IceGrid.*;
+import IceGridGUI.*;
+
+interface PropertySetParent
+{
+ void tryAdd(String id, PropertySetDescriptor descriptor)
+ throws UpdateFailedException;
+
+ void insertPropertySet(PropertySet nps, boolean fireEvent)
+ throws UpdateFailedException;
+
+ void removePropertySet(PropertySet nps);
+
+ void removeDescriptor(String id);
+
+ Editable getEditable();
+}
|