mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
18 lines
426 B
Java
18 lines
426 B
Java
|
/* 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() { }
|
||
|
}
|