java/src/stx/libjava/Alien.java
branchdirectory_structure_refactoring
changeset 1818 2e5ed72e7dfd
parent 1651 3fc0effc42b3
child 2380 9195eccdcbd9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/java/src/stx/libjava/Alien.java	Thu Nov 15 22:10:02 2012 +0000
@@ -0,0 +1,19 @@
+package stx.libjava;
+
+/**
+ * Alien class represent 'alien' objects in system supporting
+ * Translucent Objects. Not used in normally. 
+ * 
+ * @author Jan Vrany
+ *
+ */
+
+public class Alien {
+	
+	private static native void markAsAlienClass(Class<?> klass);
+	
+	static {
+		Alien.markAsAlienClass(Alien.class);
+	}
+
+}