NullType.java revision 2571:10fc81ac75b4
1273806Snp/*
2273806Snp * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
3273806Snp * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4273806Snp *
5273806Snp * This code is free software; you can redistribute it and/or modify it
6273806Snp * under the terms of the GNU General Public License version 2 only, as
7273806Snp * published by the Free Software Foundation.  Oracle designates this
8273806Snp * particular file as subject to the "Classpath" exception as provided
9273806Snp * by Oracle in the LICENSE file that accompanied this code.
10273806Snp *
11273806Snp * This code is distributed in the hope that it will be useful, but WITHOUT
12273806Snp * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13273806Snp * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14273806Snp * version 2 for more details (a copy is included in the LICENSE file that
15273806Snp * accompanied this code).
16273806Snp *
17273806Snp * You should have received a copy of the GNU General Public License version
18273806Snp * 2 along with this work; if not, write to the Free Software Foundation,
19273806Snp * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20273806Snp *
21273806Snp * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22273806Snp * or visit www.oracle.com if you need additional information or have any
23273806Snp * questions.
24273806Snp */
25273806Snp
26273806Snppackage javax.lang.model.type;
27273806Snp
28273806Snp
29273806Snp/**
30273806Snp * Represents the null type.
31273806Snp * This is the type of the expression {@code null},
32273806Snp *
33273806Snp * @author Joseph D. Darcy
34273806Snp * @author Scott Seligman
35273806Snp * @author Peter von der Ahé
36273806Snp * @since 1.6
37273806Snp */
38273806Snp
39273806Snppublic interface NullType extends ReferenceType {
40273806Snp}
41273806Snp