FileDocCategorySizeDatePackage
FilterGenerator.javaAPI DocJava SE 5 API1990Fri Aug 26 14:55:38 BST 2005com.sun.org.apache.xalan.internal.xsltc.compiler.util

FilterGenerator

public final class FilterGenerator extends ClassGenerator
This class implements auxliary classes needed to compile filters (predicates). These classes defined a single method of type TestGenerator.
author
Jacek Ambroziak
author
Santiago Pericas-Geertsen

Fields Summary
private static int
TRANSLET_INDEX
private final Instruction
_aloadTranslet
Constructors Summary
public FilterGenerator(String className, String superClassName, String fileName, int accessFlags, String[] interfaces, Stylesheet stylesheet)


        
			    
			      
			     
	super(className, superClassName, fileName,
	      accessFlags, interfaces, stylesheet);
	
	_aloadTranslet = new ALOAD(TRANSLET_INDEX);
    
Methods Summary
public booleanisExternal()
Returns true since this class is external to the translet.

	return true;
    
public final com.sun.org.apache.bcel.internal.generic.InstructionloadTranslet()
The index of the translet pointer within the execution of the test method.

	return _aloadTranslet;