当前位置: 首页>>代码示例>>Java>>正文


Java Attribute类代码示例

本文整理汇总了Java中org.objectweb.asm.Attribute的典型用法代码示例。如果您正苦于以下问题:Java Attribute类的具体用法?Java Attribute怎么用?Java Attribute使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Attribute类属于org.objectweb.asm包,在下文中一共展示了Attribute类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: attrRemover

import org.objectweb.asm.Attribute; //导入依赖的package包/类
private static void attrRemover(ClassNode classNode) {
    if (classNode.superName.equals("org/bukkit/plugin/java/JavaPlugin") || classNode.superName.equals("net/md_5/bungee/api/plugin/Plugin")) {
        if (classNode.attrs != null) {
            Iterator<Attribute> attributeIterator = classNode.attrs.iterator();
            while (attributeIterator.hasNext()) {
                Attribute attribute = attributeIterator.next();
                if (attribute.type.equalsIgnoreCase("PluginVersion")) {
                    attributeIterator.remove();
                }
                if (attribute.type.equalsIgnoreCase("CompileVersion")) {
                    attributeIterator.remove();
                }
            }
        }
    }
}
 
开发者ID:ItzSomebody,项目名称:DirectLeaks-AntiReleak-Remover,代码行数:17,代码来源:InjectorRemover.java

示例2: read

import org.objectweb.asm.Attribute; //导入依赖的package包/类
protected Attribute read(
    ClassReader cr,
    int off,
    int len,
    char[] buf,
    int codeOff,
    Label[] labels)
{
    StackMapTableAttribute attr = (StackMapTableAttribute) super.read(cr,
            off,
            len,
            buf,
            codeOff,
            labels);

    return new ASMStackMapTableAttribute(attr.getFrames(), len);
}
 
开发者ID:vilie,项目名称:javify,代码行数:18,代码来源:ASMStackMapTableAttribute.java

示例3: read

import org.objectweb.asm.Attribute; //导入依赖的package包/类
protected Attribute read(
    ClassReader cr,
    int off,
    int len,
    char[] buf,
    int codeOff,
    Label[] labels)
{
    StackMapAttribute attr = (StackMapAttribute) super.read(cr,
            off,
            len,
            buf,
            codeOff,
            labels);

    return new ASMStackMapAttribute(attr.getFrames(), len);
}
 
开发者ID:vilie,项目名称:javify,代码行数:18,代码来源:ASMStackMapAttribute.java

示例4: visitAttribute

import org.objectweb.asm.Attribute; //导入依赖的package包/类
public void visitAttribute(final Attribute attr) {
    buf.setLength(0);
    buf.append(tab).append("ATTRIBUTE ");
    appendDescriptor(-1, attr.type);

    if (attr instanceof Traceable) {
        ((Traceable) attr).trace(buf, labelNames);
    } else {
        buf.append(" : ").append(attr.toString()).append("\n");
    }

    text.add(buf.toString());
    if (mv != null) {
        mv.visitAttribute(attr);
    }
}
 
开发者ID:vilie,项目名称:javify,代码行数:17,代码来源:TraceMethodVisitor.java

示例5: visitAttribute

import org.objectweb.asm.Attribute; //导入依赖的package包/类
@Override
public void visitAttribute(Attribute attr)
{
    if ( attr.type.equals( SimulareAttribute.TYPE ) )
    {
        if ( transformed )
        {
            throw new IllegalStateException( "Duplicate Simulare attribute!" );
        }

        skipCount++;
        transformed = true;
    }

    super.visitAttribute( attr );
}
 
开发者ID:SpigotMC,项目名称:Simulare,代码行数:17,代码来源:TransformMojo.java

示例6: test

import org.objectweb.asm.Attribute; //导入依赖的package包/类
public void test() throws Exception {
    Attribute[] attributes = new Attribute[] { new ASMStackMapTableAttribute() };

    ClassWriter cw = new ClassWriter(false);

    ClassReader cr1 = new ClassReader(is);
    cr1.accept(cw, attributes, true);

    ClassReader cr2 = new ClassReader(cw.toByteArray());

    if (!Arrays.equals(cr1.b, cr2.b)) {
        StringWriter sw1 = new StringWriter();
        StringWriter sw2 = new StringWriter();
        ClassVisitor cv1 = new TraceClassVisitor(new PrintWriter(sw1));
        ClassVisitor cv2 = new TraceClassVisitor(new PrintWriter(sw2));
        cr1.accept(cv1, attributes, true);
        cr2.accept(cv2, attributes, true);
        assertEquals("different data", sw1.toString(), sw2.toString());
    }

}
 
开发者ID:typetools,项目名称:annotation-tools,代码行数:22,代码来源:StackMapTableAttributeTest.java

示例7: visitAttribute

import org.objectweb.asm.Attribute; //导入依赖的package包/类
@Override
public void visitAttribute(final Attribute attr) {
    if (attrs == null) {
        attrs = new ArrayList<Attribute>(1);
    }
    attrs.add(attr);
}
 
开发者ID:ItzSomebody,项目名称:DirectLeaks-AntiReleak-Remover,代码行数:8,代码来源:FieldNode.java

示例8: visitAttribute

import org.objectweb.asm.Attribute; //导入依赖的package包/类
@Override
public void visitAttribute(final Attribute attr) {
    checkEnd();
    if (attr == null) {
        throw new IllegalArgumentException(
                "Invalid attribute (must not be null)");
    }
    super.visitAttribute(attr);
}
 
开发者ID:ItzSomebody,项目名称:DirectLeaks-AntiReleak-Remover,代码行数:10,代码来源:CheckFieldAdapter.java

示例9: visitAttribute

import org.objectweb.asm.Attribute; //导入依赖的package包/类
public void visitAttribute(final Attribute attr) {
    buf.setLength(0);
    buf.append("// ATTRIBUTE ").append(attr.type).append('\n');
    if (attr instanceof ASMifiable) {
        if (labelNames == null) {
            labelNames = new HashMap<Label, String>();
        }
        buf.append("{\n");
        ((ASMifiable) attr).asmify(buf, "attr", labelNames);
        buf.append(name).append(".visitAttribute(attr);\n");
        buf.append("}\n");
    }
    text.add(buf.toString());
}
 
开发者ID:ItzSomebody,项目名称:DirectLeaks-AntiReleak-Remover,代码行数:15,代码来源:ASMifier.java

示例10: visitAttribute

import org.objectweb.asm.Attribute; //导入依赖的package包/类
@Override
public void visitAttribute(final Attribute attr) {
    checkState();
    if (attr == null) {
        throw new IllegalArgumentException(
                "Invalid attribute (must not be null)");
    }
    super.visitAttribute(attr);
}
 
开发者ID:ItzSomebody,项目名称:DirectLeaks-AntiReleak-Remover,代码行数:10,代码来源:CheckClassAdapter.java

示例11: visitMethodAttribute

import org.objectweb.asm.Attribute; //导入依赖的package包/类
@Override
public void visitMethodAttribute(final Attribute attr) {
    buf.setLength(0);
    buf.append(tab).append("ATTRIBUTE ");
    appendDescriptor(-1, attr.type);

    if (attr instanceof Textifiable) {
        ((Textifiable) attr).textify(buf, labelNames);
    } else {
        buf.append(" : unknown\n");
    }

    text.add(buf.toString());
}
 
开发者ID:ItzSomebody,项目名称:DirectLeaks-AntiReleak-Remover,代码行数:15,代码来源:Textifier.java

示例12: visitAttribute

import org.objectweb.asm.Attribute; //导入依赖的package包/类
/**
 * Prints a disassembled view of the given attribute.
 *
 * @param attr
 *            an attribute.
 */
public void visitAttribute(final Attribute attr) {
    buf.setLength(0);
    buf.append(tab).append("ATTRIBUTE ");
    appendDescriptor(-1, attr.type);

    if (attr instanceof Textifiable) {
        ((Textifiable) attr).textify(buf, null);
    } else {
        buf.append(" : unknown\n");
    }

    text.add(buf.toString());
}
 
开发者ID:ItzSomebody,项目名称:DirectLeaks-AntiReleak-Remover,代码行数:20,代码来源:Textifier.java

示例13: visitAttribute

import org.objectweb.asm.Attribute; //导入依赖的package包/类
@Override
public void visitAttribute(final Attribute attr) {
    checkEndMethod();
    if (attr == null) {
        throw new IllegalArgumentException(
                "Invalid attribute (must not be null)");
    }
    super.visitAttribute(attr);
}
 
开发者ID:ItzSomebody,项目名称:DirectLeaks-AntiReleak-Remover,代码行数:10,代码来源:CheckMethodAdapter.java


注:本文中的org.objectweb.asm.Attribute类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。