langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/Module_attribute.java
changeset 43767 9cff98a149cb
parent 42822 a84956e7ee4d
equal deleted inserted replaced
43648:ce7b7f98a236 43767:9cff98a149cb
    36  *  If you write code that depends on this, you do so at your own risk.
    36  *  If you write code that depends on this, you do so at your own risk.
    37  *  This code and its internal interfaces are subject to change or
    37  *  This code and its internal interfaces are subject to change or
    38  *  deletion without notice.</b>
    38  *  deletion without notice.</b>
    39  */
    39  */
    40 public class Module_attribute extends Attribute {
    40 public class Module_attribute extends Attribute {
    41     public static final int ACC_TRANSITIVE      =   0x10;
    41     public static final int ACC_TRANSITIVE      =   0x20;
    42     public static final int ACC_STATIC_PHASE    =   0x20;
    42     public static final int ACC_STATIC_PHASE    =   0x40;
    43     public static final int ACC_OPEN            =   0x20;
    43     public static final int ACC_OPEN            =   0x20;
    44     public static final int ACC_SYNTHETIC       = 0x1000;
    44     public static final int ACC_SYNTHETIC       = 0x1000;
    45     public static final int ACC_MANDATED        = 0x8000;
    45     public static final int ACC_MANDATED        = 0x8000;
    46 
    46 
    47     Module_attribute(ClassReader cr, int name_index, int length) throws IOException {
    47     Module_attribute(ClassReader cr, int name_index, int length) throws IOException {