com.sun.tools.classfile.Type Java Examples

The following examples show how to use com.sun.tools.classfile.Type. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ClassWriter.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
public StringBuilder visitTypeParamType(TypeParamType type, StringBuilder sb) {
    sb.append(type.name);
    String sep = " extends ";
    if (type.classBound != null
            && (options.verbose || !type.classBound.isObject())) {
        sb.append(sep);
        append(sb, type.classBound);
        sep = " & ";
    }
    if (type.interfaceBounds != null) {
        for (Type bound: type.interfaceBounds) {
            sb.append(sep);
            append(sb, bound);
            sep = " & ";
        }
    }
    return sb;
}
 
Example #2
Source File: ClassWriter.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
@Override
public StringBuilder visitTypeParamType(TypeParamType type, StringBuilder sb) {
    sb.append(type.name);
    String sep = " extends ";
    if (type.classBound != null
            && (options.verbose || !type.classBound.isObject())) {
        sb.append(sep);
        append(sb, type.classBound);
        sep = " & ";
    }
    if (type.interfaceBounds != null) {
        for (Type bound: type.interfaceBounds) {
            sb.append(sep);
            append(sb, bound);
            sep = " & ";
        }
    }
    return sb;
}
 
Example #3
Source File: ClassWriter.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
public StringBuilder visitTypeParamType(TypeParamType type, StringBuilder sb) {
    sb.append(type.name);
    String sep = " extends ";
    if (type.classBound != null
            && (options.verbose || !type.classBound.isObject())) {
        sb.append(sep);
        append(sb, type.classBound);
        sep = " & ";
    }
    if (type.interfaceBounds != null) {
        for (Type bound: type.interfaceBounds) {
            sb.append(sep);
            append(sb, bound);
            sep = " & ";
        }
    }
    return sb;
}
 
Example #4
Source File: ClassWriter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
public StringBuilder visitTypeParamType(TypeParamType type, StringBuilder sb) {
    sb.append(type.name);
    String sep = " extends ";
    if (type.classBound != null
            && (options.verbose || !type.classBound.isObject())) {
        sb.append(sep);
        append(sb, type.classBound);
        sep = " & ";
    }
    if (type.interfaceBounds != null) {
        for (Type bound: type.interfaceBounds) {
            sb.append(sep);
            append(sb, bound);
            sep = " & ";
        }
    }
    return sb;
}
 
Example #5
Source File: ClassWriter.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
public StringBuilder visitTypeParamType(TypeParamType type, StringBuilder sb) {
    sb.append(type.name);
    String sep = " extends ";
    if (type.classBound != null
            && (options.verbose || !type.classBound.isObject())) {
        sb.append(sep);
        append(sb, type.classBound);
        sep = " & ";
    }
    if (type.interfaceBounds != null) {
        for (Type bound: type.interfaceBounds) {
            sb.append(sep);
            append(sb, bound);
            sep = " & ";
        }
    }
    return sb;
}
 
Example #6
Source File: ClassWriter.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
public StringBuilder visitTypeParamType(TypeParamType type, StringBuilder sb) {
    sb.append(type.name);
    String sep = " extends ";
    if (type.classBound != null
            && (options.verbose || !type.classBound.isObject())) {
        sb.append(sep);
        append(sb, type.classBound);
        sep = " & ";
    }
    if (type.interfaceBounds != null) {
        for (Type bound: type.interfaceBounds) {
            sb.append(sep);
            append(sb, bound);
            sep = " & ";
        }
    }
    return sb;
}
 
Example #7
Source File: ClassWriter.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
public StringBuilder visitTypeParamType(TypeParamType type, StringBuilder sb) {
    sb.append(type.name);
    String sep = " extends ";
    if (type.classBound != null
            && (options.verbose || !type.classBound.isObject())) {
        sb.append(sep);
        append(sb, type.classBound);
        sep = " & ";
    }
    if (type.interfaceBounds != null) {
        for (Type bound: type.interfaceBounds) {
            sb.append(sep);
            append(sb, bound);
            sep = " & ";
        }
    }
    return sb;
}
 
Example #8
Source File: ClassWriter.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
public StringBuilder visitTypeParamType(TypeParamType type, StringBuilder sb) {
    sb.append(type.name);
    String sep = " extends ";
    if (type.classBound != null
            && (options.verbose || !type.classBound.isObject())) {
        sb.append(sep);
        append(sb, type.classBound);
        sep = " & ";
    }
    if (type.interfaceBounds != null) {
        for (Type bound: type.interfaceBounds) {
            sb.append(sep);
            append(sb, bound);
            sep = " & ";
        }
    }
    return sb;
}
 
Example #9
Source File: ClassWriter.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    sb.append(prefix);
    String sep = "";
    for (Type t: list) {
        sb.append(sep);
        append(sb, t);
        sep = ", ";
    }
    sb.append(suffix);
}
 
Example #10
Source File: ClassWriter.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    sb.append(prefix);
    String sep = "";
    for (Type t: list) {
        sb.append(sep);
        append(sb, t);
        sep = ", ";
    }
    sb.append(suffix);
}
 
Example #11
Source File: ClassWriter.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    sb.append(prefix);
    String sep = "";
    for (Type t: list) {
        sb.append(sep);
        append(sb, t);
        sep = ", ";
    }
    sb.append(suffix);
}
 
Example #12
Source File: ClassWriter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    sb.append(prefix);
    String sep = "";
    for (Type t: list) {
        sb.append(sep);
        append(sb, t);
        sep = ", ";
    }
    sb.append(suffix);
}
 
Example #13
Source File: ClassWriter.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    sb.append(prefix);
    String sep = "";
    for (Type t: list) {
        sb.append(sep);
        append(sb, t);
        sep = ", ";
    }
    sb.append(suffix);
}
 
Example #14
Source File: ClassWriter.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    sb.append(prefix);
    String sep = "";
    for (Type t: list) {
        sb.append(sep);
        append(sb, t);
        sep = ", ";
    }
    sb.append(suffix);
}
 
Example #15
Source File: ClassWriter.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    sb.append(prefix);
    String sep = "";
    for (Type t: list) {
        sb.append(sep);
        append(sb, t);
        sep = ", ";
    }
    sb.append(suffix);
}
 
Example #16
Source File: ClassWriter.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    sb.append(prefix);
    String sep = "";
    for (Type t: list) {
        sb.append(sep);
        append(sb, t);
        sep = ", ";
    }
    sb.append(suffix);
}
 
Example #17
Source File: ClassWriter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private boolean isEmpty(List<? extends Type> list) {
    return (list == null || list.isEmpty());
}
 
Example #18
Source File: ClassWriter.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
protected void writeField(Field f) {
    if (!options.checkAccess(f.access_flags))
        return;

    AccessFlags flags = f.access_flags;
    writeModifiers(flags.getFieldModifiers());
    Signature_attribute sigAttr = getSignature(f.attributes);
    if (sigAttr == null)
        print(getJavaFieldType(f.descriptor));
    else {
        try {
            Type t = sigAttr.getParsedSignature().getType(constant_pool);
            print(getJavaName(t.toString()));
        } catch (ConstantPoolException e) {
            // report error?
            // fall back on non-generic descriptor
            print(getJavaFieldType(f.descriptor));
        }
    }
    print(" ");
    print(getFieldName(f));
    if (options.showConstants) {
        Attribute a = f.attributes.get(Attribute.ConstantValue);
        if (a instanceof ConstantValue_attribute) {
            print(" = ");
            ConstantValue_attribute cv = (ConstantValue_attribute) a;
            print(getConstantValue(f.descriptor, cv.constantvalue_index));
        }
    }
    print(";");
    println();

    indent(+1);

    boolean showBlank = false;

    if (options.showDescriptors)
        println("descriptor: " + getValue(f.descriptor));

    if (options.verbose)
        writeList(String.format("flags: (0x%04x) ", flags.flags), flags.getFieldFlags(), "\n");

    if (options.showAllAttrs) {
        for (Attribute attr: f.attributes)
            attrWriter.write(f, attr, constant_pool);
        showBlank = true;
    }

    indent(-1);

    if (showBlank || options.showDisassembled || options.showLineAndLocalVariableTables)
        println();
}
 
Example #19
Source File: ClassWriter.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
String print(Type t) {
    return t.accept(this, new StringBuilder()).toString();
}
 
Example #20
Source File: ClassWriter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
String print(Type t) {
    return t.accept(this, new StringBuilder()).toString();
}
 
Example #21
Source File: ClassWriter.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private boolean isEmpty(List<? extends Type> list) {
    return (list == null || list.isEmpty());
}
 
Example #22
Source File: ClassWriter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private void append(StringBuilder sb, Type t) {
    t.accept(this, sb);
}
 
Example #23
Source File: ClassWriter.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private void appendIfNotEmpty(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    if (!isEmpty(list))
        append(sb, prefix, list, suffix);
}
 
Example #24
Source File: ClassWriter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private void appendIfNotEmpty(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) {
    if (!isEmpty(list))
        append(sb, prefix, list, suffix);
}
 
Example #25
Source File: ClassWriter.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private boolean isEmpty(List<? extends Type> list) {
    return (list == null || list.isEmpty());
}
 
Example #26
Source File: ClassWriter.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private void append(StringBuilder sb, Type t) {
    t.accept(this, sb);
}
 
Example #27
Source File: ClassWriter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
protected void writeField(Field f) {
    if (!options.checkAccess(f.access_flags))
        return;

    AccessFlags flags = f.access_flags;
    writeModifiers(flags.getFieldModifiers());
    Signature_attribute sigAttr = getSignature(f.attributes);
    if (sigAttr == null)
        print(getJavaFieldType(f.descriptor));
    else {
        try {
            Type t = sigAttr.getParsedSignature().getType(constant_pool);
            print(getJavaName(t.toString()));
        } catch (ConstantPoolException e) {
            // report error?
            // fall back on non-generic descriptor
            print(getJavaFieldType(f.descriptor));
        }
    }
    print(" ");
    print(getFieldName(f));
    if (options.showConstants) {
        Attribute a = f.attributes.get(Attribute.ConstantValue);
        if (a instanceof ConstantValue_attribute) {
            print(" = ");
            ConstantValue_attribute cv = (ConstantValue_attribute) a;
            print(getConstantValue(f.descriptor, cv.constantvalue_index));
        }
    }
    print(";");
    println();

    indent(+1);

    boolean showBlank = false;

    if (options.showDescriptors)
        println("descriptor: " + getValue(f.descriptor));

    if (options.verbose)
        writeList("flags: ", flags.getFieldFlags(), "\n");

    if (options.showAllAttrs) {
        for (Attribute attr: f.attributes)
            attrWriter.write(f, attr, constant_pool);
        showBlank = true;
    }

    indent(-1);

    if (showBlank || options.showDisassembled || options.showLineAndLocalVariableTables)
        println();
}
 
Example #28
Source File: ClassWriter.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
String print(Type t) {
    return t.accept(this, new StringBuilder()).toString();
}
 
Example #29
Source File: ClassWriter.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private void append(StringBuilder sb, Type t) {
    t.accept(this, sb);
}
 
Example #30
Source File: ClassWriter.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
String print(Type t) {
    return t.accept(this, new StringBuilder()).toString();
}