alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (JAccessFlags.java)

This example Scala source code file (JAccessFlags.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

acc_abstract, acc_abstract, acc_annotation, acc_bridge, acc_enum, acc_final, acc_interface, acc_native, acc_private, acc_protected, acc_public, acc_public, acc_varargs, acc_volatile

The Scala JAccessFlags.java source code

/* FJBG -- Fast Java Bytecode Generator
 * Copyright 2002-2011 LAMP/EPFL
 * @author  Michel Schinz
 */

package ch.epfl.lamp.fjbg;

/**
 * Definition of access flags for fields, methods and classes.
 *
 * @author Michel Schinz
 * @version 1.0
 */

public interface JAccessFlags {
    public static int ACC_PUBLIC    = 0x0001;
    public static int ACC_PRIVATE   = 0x0002;
    public static int ACC_PROTECTED = 0x0004;
    public static int ACC_STATIC    = 0x0008;
    public static int ACC_FINAL     = 0x0010;
    public static int ACC_SUPER     = 0x0020;
    public static int ACC_VOLATILE  = 0x0040;
    public static int ACC_TRANSIENT = 0x0080;
    public static int ACC_NATIVE    = 0x0100;
    public static int ACC_INTERFACE = 0x0200;
    public static int ACC_ABSTRACT  = 0x0400;
    public static int ACC_STRICT    = 0x0800;
    public static int ACC_SYNTHETIC = 0x1000;
    public static int ACC_ANNOTATION= 0x2000;
    public static int ACC_ENUM      = 0x4000;
    
    // 1.5 specifics
    public static int ACC_BRIDGE    = 0x0040;
    public static int ACC_VARARGS   = 0x0080;    
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala JAccessFlags.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.