diff dbus-d-javatests/jsrc/filetree/DataItem.java @ 0:a5576806d36d

recreate repository without any libs for lightweight repository
author Frank Benoit <benoit@tionex.de>
date Sat, 20 Oct 2007 18:07:18 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dbus-d-javatests/jsrc/filetree/DataItem.java	Sat Oct 20 18:07:18 2007 +0200
@@ -0,0 +1,11 @@
+package filetree;
+
+import org.freedesktop.dbus.DBusInterface;
+
+
+public interface DataItem extends DBusInterface {
+	public DataItem[] getChilds();
+	public boolean    isFolder();
+	public boolean    isDrive();
+	public String     getName();
+}