2000-05-18 18:08:25 +08:00
|
|
|
/* Copyright (C) 1999, 2000 Free Software Foundation
|
1999-05-10 16:42:28 +08:00
|
|
|
|
|
|
|
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. */
|
|
|
|
|
1999-05-05 20:26:37 +08:00
|
|
|
package gnu.gcj;
|
|
|
|
|
2000-05-18 18:08:25 +08:00
|
|
|
/** A type used to indicate special data used by native code that should not
|
|
|
|
be marked by the garbage collector. */
|
1999-05-05 20:26:37 +08:00
|
|
|
|
|
|
|
public final class RawData
|
|
|
|
{
|
|
|
|
private RawData() { }
|
|
|
|
}
|