compiledinvoker.java

来自「jboss规则引擎」· Java 代码 · 共 25 行

JAVA
25
字号
package org.drools.spi;

import java.util.List;

import org.drools.spi.Invoker;

/**
 * This interface is used by semantic modules that are compiled
 * to bytecode. 
 * 
 * @author Michael Neale
 */
public interface CompiledInvoker
    extends
    Invoker {
    
    /**
     * Generated code should be able to return a List which represents the bytecode.
     * The elements in the list will be used to compare one semantic invoker
     * with another by making sure each item in the list is equivalent (equals()).
     * There are utilities in the ASM package to retrieve the bytecode for this.
     */
    public List getMethodBytecode();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?