1 /*
2  * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
3  */
4 /*
5  * Licensed to the Apache Software Foundation (ASF) under one or more
6  * contributor license agreements.  See the NOTICE file distributed with
7  * this work for additional information regarding copyright ownership.
8  * The ASF licenses this file to You under the Apache License, Version 2.0
9  * (the "License"); you may not use this file except in compliance with
10  * the License.  You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 
21 package com.sun.org.apache.xalan.internal.xsltc;
22 
23 import com.sun.org.apache.xml.internal.dtm.DTMAxisIterator;
24 import com.sun.org.apache.xml.internal.serializer.SerializationHandler;
25 
26 /**
27  * @author Jacek Ambroziak
28  * @author Santiago Pericas-Geertsen
29  * @LastModified: Oct 2017
30  */
31 public interface Translet {
32 
transform(DOM document, SerializationHandler handler)33     public void transform(DOM document, SerializationHandler handler)
34         throws TransletException;
transform(DOM document, SerializationHandler[] handlers)35     public void transform(DOM document, SerializationHandler[] handlers)
36         throws TransletException;
transform(DOM document, DTMAxisIterator iterator, SerializationHandler handler)37     public void transform(DOM document, DTMAxisIterator iterator,
38                           SerializationHandler handler)
39         throws TransletException;
40 
addParameter(String name, Object value)41     public Object addParameter(String name, Object value);
42 
buildKeys(DOM document, DTMAxisIterator iterator, SerializationHandler handler, int root)43     public void buildKeys(DOM document, DTMAxisIterator iterator,
44                           SerializationHandler handler, int root)
45         throws TransletException;
addAuxiliaryClass(Class<?> auxClass)46     public void addAuxiliaryClass(Class<?> auxClass);
getAuxiliaryClass(String className)47     public Class<?> getAuxiliaryClass(String className);
getNamesArray()48     public String[] getNamesArray();
getUrisArray()49     public String[] getUrisArray();
getTypesArray()50     public int[]    getTypesArray();
getNamespaceArray()51     public String[] getNamespaceArray();
overrideDefaultParser()52     public boolean overrideDefaultParser();
setOverrideDefaultParser(boolean flag)53     public void setOverrideDefaultParser(boolean flag);
54 
55 }
56