| java.lang.Object de.java2html.converter.AbstractJavaSourceConverter
All known Subclasses: de.java2html.converter.JavaSource2RtfConverter, de.java2html.converter.AbstractJavaSourceToXmlConverter, de.java2html.converter.JavaSource2TeXConverter, de.java2html.converter.JavaSource2HTMLConverter,
AbstractJavaSourceConverter | abstract public class AbstractJavaSourceConverter implements IJavaSourceConverter(Code) | | Abstract superclass for all converters for converting a
de.java2html.javasource.JavaSource object to anything else.
For questions, suggestions, bug-reports, enhancement-requests etc.
I may be contacted at:
markus@jave.de
The Java2html home page is located at:
http://www.java2html.de
author: Markus Gebhard version: 2.0, 05/07/02 version: Copyright (C) Markus Gebhard 2000-2002 version: This program is free software; you can redistribute it and/or version: modify it under the terms of the GNU General Public License version: as published by the Free Software Foundation; either version 2 version: of the License, or (at your option) any later version. version: This program is distributed in the hope that it will be useful, version: but WITHOUT ANY WARRANTY; without even the implied warranty of version: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the version: GNU General Public License for more details. version: You should have received a copy of the GNU General Public License version: along with this program; if not, write to the Free Software version: Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
getBlockSeparator | abstract public String getBlockSeparator(JavaSourceConversionOptions options)(Code) | | Returns the code that has to be placed between two blocks
of converted code.
Subclasses can return an empty String ("") if there is none neccessary.
|
getDefaultFileExtension | final public String getDefaultFileExtension()(Code) | | |
getDocumentFooter | abstract public String getDocumentFooter(JavaSourceConversionOptions options)(Code) | | Returns a footer for the result document.
This one will be placed behind the last block of converted
code.
Subclasses can return an empty String ("") if there is none neccessary.
|
getDocumentHeader | abstract public String getDocumentHeader(JavaSourceConversionOptions options, String title)(Code) | | Returns a header for the result document.
This one will be placed before the first block of converted
code.
Subclasses can return an empty String ("") if there is none neccessary.
Parameters: title - |
|
|