summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/Server.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceGridGUI/Application/Server.java')
-rw-r--r--java/src/IceGridGUI/Application/Server.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/java/src/IceGridGUI/Application/Server.java b/java/src/IceGridGUI/Application/Server.java
new file mode 100644
index 00000000000..4cf14705f4e
--- /dev/null
+++ b/java/src/IceGridGUI/Application/Server.java
@@ -0,0 +1,20 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2011 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;
+
+interface Server extends TemplateInstance
+{
+ Editable getEditable();
+
+ Object getDescriptor();
+
+ Object saveDescriptor();
+ void restoreDescriptor(Object descriptor);
+}