summaryrefslogtreecommitdiff
path: root/java/demo/book/map_filesystem/FilesystemI/NodeI.java
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2008-05-12 00:26:34 +1000
committerMichi Henning <michi@zeroc.com>2008-05-12 00:26:34 +1000
commitc4597d776f109d48a29031e01a99a4a8664b470c (patch)
treefad36531d09c263ba8428495649162b922584e89 /java/demo/book/map_filesystem/FilesystemI/NodeI.java
parentFixed incorrect file permissions. (diff)
downloadice-c4597d776f109d48a29031e01a99a4a8664b470c.tar.bz2
ice-c4597d776f109d48a29031e01a99a4a8664b470c.tar.xz
ice-c4597d776f109d48a29031e01a99a4a8664b470c.zip
Added map filesystem demo for Java.
Fixed a few bugs and style issues in C++ map filesystem demo.
Diffstat (limited to 'java/demo/book/map_filesystem/FilesystemI/NodeI.java')
-rw-r--r--java/demo/book/map_filesystem/FilesystemI/NodeI.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/java/demo/book/map_filesystem/FilesystemI/NodeI.java b/java/demo/book/map_filesystem/FilesystemI/NodeI.java
new file mode 100644
index 00000000000..52162b64b85
--- /dev/null
+++ b/java/demo/book/map_filesystem/FilesystemI/NodeI.java
@@ -0,0 +1,16 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2008 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 FilesystemI;
+
+public interface NodeI
+{
+ Ice.Identity id();
+ Ice.ObjectPrx activate(Ice.ObjectAdapter a);
+}