Java 类org.objectweb.asm.util.attrs.Traceable 实例源码

项目:javify    文件:TraceMethodVisitor.java   
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);
    }
}
项目:jvm-stm    文件:TraceMethodVisitor.java   
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);
    }
}
项目:annotation-tools    文件:TraceMethodVisitor.java   
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);
    }
}
项目:JamVM-PH    文件:TraceMethodVisitor.java   
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);
    }
}
项目:classpath    文件:TraceMethodVisitor.java   
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);
    }
}
项目:javify    文件:TraceAbstractVisitor.java   
/**
 * 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 Traceable) {
        ((Traceable) attr).trace(buf, null);
    } else {
        buf.append(" : ").append(attr.toString()).append("\n");
    }

    text.add(buf.toString());
}
项目:jvm-stm    文件:TraceAbstractVisitor.java   
/**
 * 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 Traceable) {
        ((Traceable) attr).trace(buf, null);
    } else {
        buf.append(" : ").append(attr.toString()).append("\n");
    }

    text.add(buf.toString());
}
项目:annotation-tools    文件:TraceAbstractVisitor.java   
/**
 * 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 Traceable) {
        ((Traceable) attr).trace(buf, null);
    } else {
        buf.append(" : ").append(attr.toString()).append("\n");
    }

    text.add(buf.toString());
}
项目:JamVM-PH    文件:TraceAbstractVisitor.java   
/**
 * 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 Traceable) {
        ((Traceable) attr).trace(buf, null);
    } else {
        buf.append(" : ").append(attr.toString()).append("\n");
    }

    text.add(buf.toString());
}
项目:classpath    文件:TraceAbstractVisitor.java   
/**
 * 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 Traceable) {
        ((Traceable) attr).trace(buf, null);
    } else {
        buf.append(" : ").append(attr.toString()).append("\n");
    }

    text.add(buf.toString());
}