Example usage for org.objectweb.asm Opcodes interface-usage

List of usage examples for org.objectweb.asm Opcodes interface-usage

Introduction

In this page you can find the example usage for org.objectweb.asm Opcodes interface-usage.

Usage

From source file gemlite.core.internal.asm.serialize.PdxSerializeHelper.java

@SuppressWarnings({ "unchecked", "rawtypes" })
public class PdxSerializeHelper implements Opcodes {
    public final static String DATAS_NAME = PdxConstants.PDX_SERIALIZABLE;
    private PdxSFieldProcessor fp = new PdxSFieldProcessor();

    private final static PdxSerializeHelper instance = new PdxSerializeHelper();

From source file gemlite.maven.plugin.DomainMojoExecutor.java

public class DomainMojoExecutor implements Opcodes {
    private String autoSerializeType; // default value : ds

    public DomainMojoExecutor() {

    }

From source file gemlite.maven.plugin.support.mapper.CreateMapperRegister.java

@SuppressWarnings("unchecked")
public class CreateMapperRegister implements Opcodes, DomainMojoConstant {
    public final static String INTERFACE_NAME = IDomainRegistry.class.getName().replaceAll("\\.", "\\/");
    private final static Pattern classNameCharacterPattern = Pattern.compile("[^0-9a-zA-Z_]");
    private ClassNode reg;
    private byte[] fileBytes;

From source file gemlite.maven.plugin.support.mapper.MapperToolProcessor.java

/***
 * 
 * @author ynd ?domain??IMapperTool
 *         1.??= domain.name + "$$IMapperToolImpl"
 *         gemlite.sample.domain.Order$$IMapperToolImpl
 *         2.???

From source file gemlite.maven.plugin.support.serialize.DataSerializeProcessor.java

public class DataSerializeProcessor implements ClassProcessor, Opcodes {

    @Override
    public ProcessResult process(File originFile, byte[] bytes, ClassNode cn) throws IOException {
        ProcessResult result = new ProcessResult();
        DataSerializeHelper.getInstance().process(cn);

From source file gemlite.maven.plugin.support.serialize.PdxSerializeProcessor.java

public class PdxSerializeProcessor implements ClassProcessor, Opcodes {

    @Override
    public ProcessResult process(File originFile, byte[] bytes, ClassNode cn) throws IOException {
        ProcessResult result = new ProcessResult();
        PdxSerializeHelper.getInstance().process(cn);

From source file global.namespace.neuron.di.internal.ASM.java

final class ASM implements Opcodes {

    private static final String PROXIES_PACKAGE_PREFIX = Proxies.PACKAGE_NAME + ".$";

    /**
     * Returns a class which proxies the given class or interface.

From source file groovy.beans.BindableASTTransformation.java

/**
 * Handles generation of code for the {@code @Bindable} annotation when {@code @Vetoable}
 * is not present.
 * <p>
 * Generally, it adds (if needed) a PropertyChangeSupport field and
 * the needed add/removePropertyChangeListener methods to support the

From source file groovy.bugs.G3839Transform1.java

@GroovyASTTransformation(phase = CompilePhase.CANONICALIZATION)
public class G3839Transform1 implements ASTTransformation, Opcodes {

    public void visit(ASTNode[] nodes, SourceUnit sourceUnit) {
        ClassNode classNode = (ClassNode) nodes[1];
        classNode.addField(new FieldNode("f1", ACC_PUBLIC, ClassHelper.OBJECT_TYPE, classNode, null));

From source file groovy.bugs.G3839Transform2.java

@GroovyASTTransformation(phase = CompilePhase.CANONICALIZATION)
public class G3839Transform2 implements ASTTransformation, Opcodes {

    public void visit(ASTNode[] nodes, SourceUnit sourceUnit) {
        ClassNode classNode = (ClassNode) nodes[1];
        classNode.addField(new FieldNode("f2", ACC_PUBLIC, ClassHelper.OBJECT_TYPE, classNode, null));