org.fife.rsta.ac.java.classreader.AccessFlags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of languagesupport Show documentation
Show all versions of languagesupport Show documentation
A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.
/*
* 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.classreader;
/**
* Class/interface access flag masks.
*
* @author Robert Futrell
* @version 1.0
*/
public interface AccessFlags {
/**
* Declared public; may be accessed from outside its package.
*/
public static final int ACC_PUBLIC = 0x0001;
/**
* Declared private; usable only within the defining class.
*/
public static final int ACC_PRIVATE = 0x0002;
/**
* Declared protected; may be accessed within subclasses.
*/
public static final int ACC_PROTECTED = 0x0004;
/**
* Declared static.
*/
public static final int ACC_STATIC = 0x0008;
/**
* Declared final; no subclasses allowed.
*/
public static final int ACC_FINAL = 0x0010;
/**
* Treat superclass methods specially when invoked by the
* invokespecial instruction.
*/
/*
* NOTE: This is the same value as ACC_SYNCHRONIZED.
*/
public static final int ACC_SUPER = 0x0020;
/**
* Declared synchronized; invocation is wrapped in a monitor block.
*/
/*
* NOTE: This is the same value as ACC_SUPER.
*/
public static final int ACC_SYNCHRONIZED = 0x0020;
/**
* Declared volatile; cannot be cached.
*/
public static final int ACC_VOLATILE = 0x0040;
/**
* Declared transient; not written or read by a persistent object manager.
*/
public static final int ACC_TRANSIENT = 0x0080;
/**
* Declared native; implemented in a language other than Java.
*/
public static final int ACC_NATIVE = 0x0100;
/**
* Is an interface, not a class.
*/
public static final int ACC_INTERFACE = 0x0200;
/**
* Declared abstract; may not be instantiated.
*/
public static final int ACC_ABSTRACT = 0x0400;
/**
* Declared strictfp; floating-point mode is FP-strict.
*/
public static final int ACC_STRICT = 0x0800;
/**
* Declared synthetic