1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.jvm
.mle
.annotation
;
12 import java
.lang
.annotation
.Documented
;
13 import java
.lang
.annotation
.ElementType
;
14 import java
.lang
.annotation
.Retention
;
15 import java
.lang
.annotation
.RetentionPolicy
;
16 import java
.lang
.annotation
.Target
;
19 * When used with an interface this represents that the object has no real
20 * backing to it and is treated as a special object.
25 @Retention(value
=RetentionPolicy
.CLASS
)
26 @Target(value
={ElementType
.TYPE
})
27 public @interface GhostObject