diff options
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();
+}
|