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: Constants.java,v 1.2.4.1 2005/09/06 11:01:29 pvedula Exp $
286N/A */
286N/A
286N/Apackage com.sun.org.apache.xalan.internal.xsltc.runtime;
286N/A
286N/Aimport com.sun.org.apache.xml.internal.dtm.DTM;
286N/A
286N/A/**
286N/A * This class defines constants used by both the compiler and the
286N/A * runtime system.
286N/A * @author Jacek Ambroziak
286N/A * @author Santiago Pericas-Geertsen
286N/A */
286N/Apublic interface Constants {
286N/A
286N/A final static int ANY = -1;
286N/A final static int ATTRIBUTE = -2;
286N/A final static int ROOT = DTM.ROOT_NODE;
286N/A final static int TEXT = DTM.TEXT_NODE;
286N/A final static int ELEMENT = DTM.ELEMENT_NODE;
286N/A final static int COMMENT = DTM.COMMENT_NODE;
286N/A final static int PROCESSING_INSTRUCTION = DTM.PROCESSING_INSTRUCTION_NODE;
286N/A
286N/A public static final String XSLT_URI = "http://www.w3.org/1999/XSL/Transform";
286N/A public static final String NAMESPACE_FEATURE =
286N/A "http://xml.org/sax/features/namespaces";
286N/A
286N/A public static final String EMPTYSTRING = "";
286N/A public static final String XML_PREFIX = "xml";
286N/A public static final String XMLNS_PREFIX = "xmlns";
286N/A public static final String XMLNS_STRING = "xmlns:";
286N/A public static final String XMLNS_URI = "http://www.w3.org/2000/xmlns/";
286N/A}