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 org.simantics.databoard.binding.classfactory.AsmTypeClassFactory.java

/**
 * This class loader constructs record-like classes of RecordTypes, and
 * Enums / other classes of UnionTypes.
 */
public class AsmTypeClassFactory extends ClassLoader implements Opcodes, TypeClassSubFactory {

From source file org.simantics.databoard.binding.reflection.AsmBindingClassLoader.java

public class AsmBindingClassLoader extends ClassLoader implements Opcodes {

    Map<String, Class<?>> map = new HashMap<String, Class<?>>();

    public AsmBindingClassLoader() {
        super(Thread.currentThread().getContextClassLoader());

From source file org.skfiy.typhon.dispatcher.AsmDispatcherFactory.java

/**
 *
 * @author Kevin Zou <kevinz@skfiy.org>
 */
@Singleton
public class AsmDispatcherFactory extends ClassLoader implements DispatcherFactory, Opcodes {

From source file org.sonatype.restsimple.jaxrs.impl.JAXRSServiceDefinitionGenerator.java

/**
 * Generate a JAXRS resource based on {@link ServiceDefinition}, and bind it. The generated resource is closed
 * to the {@link ServiceDefinitionResource}
 */
public class JAXRSServiceDefinitionGenerator implements ServiceDefinitionGenerator, Opcodes {

From source file org.springframework.cglib.core.Constants.java

/**
 * @author Juozas Baliuka <a href="mailto:baliuka@mwm.lt">baliuka@mwm.lt</a>
 * @version $Id: Constants.java,v 1.21 2006/03/05 02:43:19 herbyderby Exp $
 */
@SuppressWarnings({ "rawtypes" })
public interface Constants extends org.objectweb.asm.Opcodes {

From source file org.springframework.xd.fluent.internal.CustomizedModuleGenerator.java

/**
 * Customize an almost deployable module into a new jar by adding the missing pieces, producing a jar that can be
 * deployed.
 *
 * @author aclement
 */

From source file org.springsource.loaded.Constants.java

/**
 * Common constants used throughout Spring Loaded.
 * 
 * @author Andy Clement
 * @since 0.5.0
 */

From source file org.springsource.loaded.test.infra.ClassPrinter.java

/**
 * @author Andy Clement
 */
public class ClassPrinter extends ClassVisitor implements Opcodes {

    private PrintStream destination;

From source file org.springsource.loaded.test.infra.MethodPrinter.java

/**
 * 
 * @author Andy Clement
 */
public class MethodPrinter extends MethodVisitor implements Opcodes {

From source file org.springsource.loaded.TypeDiffComputer.java

/**
 * Compute the differences between two versions of a type as a series of deltas. Entry point is the computeDifferences method.
 * 
 * @author Andy Clement
 * @since 0.5.0
 */