Taking a short break.
[SquirrelJME.git] / modules / cldc-compact / src / main / java / cc / squirreljme / jvm / mle / annotation / GhostObject.java
blob80bd9d032b1fe9f0c1824b7cadde867319f5d810
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
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;
18 /**
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.
22 * @since 2020/05/30
24 @Documented
25 @Retention(value=RetentionPolicy.CLASS)
26 @Target(value={ElementType.TYPE})
27 public @interface GhostObject