summaryrefslogtreecommitdiff
path: root/libjava/gnu/gcj/RawData.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/gnu/gcj/RawData.java')
-rw-r--r--libjava/gnu/gcj/RawData.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/libjava/gnu/gcj/RawData.java b/libjava/gnu/gcj/RawData.java
new file mode 100644
index 000000000..341c82fc0
--- /dev/null
+++ b/libjava/gnu/gcj/RawData.java
@@ -0,0 +1,17 @@
+/* Copyright (C) 1999, 2000 Free Software Foundation
+
+ This file is part of libgcj.
+
+This software is copyrighted work licensed under the terms of the
+Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
+details. */
+
+package gnu.gcj;
+
+/** A type used to indicate special data used by native code that should not
+ be marked by the garbage collector. */
+
+public final class RawData
+{
+ private RawData() { }
+}