📄 processable.java
字号:
/**
* Copyright (c) 2002, Siddhartha P. Chandurkar siddhartha@visioncodified.com
* All rights reserved.
* Licensed under the Academic Free License version 1.1
* See the file LICENSE.TXT for details.
* LICENSE.txt is located in the directory <install-directory>\Jenerator
* of your Jenertaor Installation.
*
*/
package com.jenerator.transformer;
/*<Imports>*/
/*</Imports>*/
/**
* Processable
* This interface is there so that the change of the xml parser and
* the xsl parser does not affect the system.
* @author Siddhartha P. Chandurkar
* @version 0.9.0
*/
public interface Processable {
/**
* The function processes the xmlStream and the xslFile using a implementation
* of a XSLT processor and outputs the result as text in a java source file
* @param xmlStream String xml as a string
* @param xslFile String Xsl file which has to be used as a
* template
* @param sourceFile String The name of the source file which
* has to be created using the output.
* @param pacakgeDir String The directory where the code has to generated.
*/
public void process(String xmlStream, String xslFile, String sourceFile, String packageDir) throws NotProcessableException;
}
// end of Processable.java
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -