]> gcc.gnu.org Git - gcc.git/blob - libjava/java/lang/Void.java
c08c4ef9b45c84db870b747204bf6ff0583df6c3
[gcc.git] / libjava / java / lang / Void.java
1 /* Copyright (C) 1998, 1999 Red Hat, Inc.
2
3 This file is part of libgcj.
4
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
8
9 package java.lang;
10
11 /**
12 * @author Per Bothner <bothner@cygnus.com>
13 * @date April 18, 1998.
14 */
15 /* Written using "Java Class Libraries", 2nd edition, plus online
16 * API docs for JDK 1.2 beta from http://www.javasoft.com.
17 * Status: Complete.
18 */
19
20 public final class Void
21 {
22 // This initialization is seemingly circular, but it is accepted
23 // by javac, and is handled specially by gcc.
24 public final static Class TYPE = void.class;
25
26 // Don't allow Void objects to be made.
27 private Void ()
28 {
29 }
30 }
This page took 0.032438 seconds and 4 git commands to generate.