286N/A/*
286N/A * reserved comment block
286N/A * DO NOT REMOVE OR ALTER!
286N/A */
286N/A/*
286N/A * Copyright 2001-2004 The Apache Software Foundation.
286N/A *
286N/A * Licensed under the Apache License, Version 2.0 (the "License");
286N/A * you may not use this file except in compliance with the License.
286N/A * You may obtain a copy of the License at
286N/A *
286N/A * http://www.apache.org/licenses/LICENSE-2.0
286N/A *
286N/A * Unless required by applicable law or agreed to in writing, software
286N/A * distributed under the License is distributed on an "AS IS" BASIS,
286N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
286N/A * See the License for the specific language governing permissions and
286N/A * limitations under the License.
286N/A */
286N/A/*
286N/A * $Id: NodeSortRecordFactGenerator.java,v 1.2.4.1 2005/09/05 11:23:07 pvedula Exp $
286N/A */
286N/A
286N/Apackage com.sun.org.apache.xalan.internal.xsltc.compiler.util;
286N/A
286N/Aimport com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet;
286N/A
286N/A/**
286N/A * Generator for subclasses of NodeSortRecordFactory.
286N/A * @author Santiago Pericas-Geertsen
286N/A */
286N/Apublic final class NodeSortRecordFactGenerator extends ClassGenerator {
286N/A
286N/A public NodeSortRecordFactGenerator(String className, String superClassName,
286N/A String fileName,
286N/A int accessFlags, String[] interfaces,
286N/A Stylesheet stylesheet) {
286N/A super(className, superClassName, fileName,
286N/A accessFlags, interfaces, stylesheet);
286N/A }
286N/A
286N/A /**
286N/A * Returns <tt>true</tt> since this class is external to the
286N/A * translet.
286N/A */
286N/A public boolean isExternal() {
286N/A return true;
286N/A }
286N/A}