~repos /gdx-studio
git clone https://pyrossh.dev/repos/gdx-studio.git
An IDE for creating Games using libgdx and Java supported on all platforms Android, iOS, Desktop
src_libs/org/fife/rsta/ac/java/rjc/lang/Annotation.java
/* * 03/21/2010 * * Copyright (C) 2010 Robert Futrell * robert_futrell at users.sourceforge.net * http://fifesoft.com/rsyntaxtextarea * * This library is distributed under a modified BSD license. See the included * RSTALanguageSupport.License.txt file for details. */package org.fife.rsta.ac.java.rjc.lang;
public class Annotation {
private Type type;
public Annotation(Type type) { this.type = type; }
public String toString() { return "@" + type.toString(); }
}