Package Torello.JavaDoc
Interface HiLiter
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface HiLiter
A simple Functional-Interface allowing a user to swap in any customized, alternate or proprietary Syntax HiLiter to replace the default HiLiter used by this Upgrader Tool.
This interface can be replaced if there are other HiLiter's that seem compatible with this JavaDoc Upgrade Tool. All that is expected is that whatever mechanism is used - it needs to be able to convert Source-Code into HTML given the inputs below.
Implementations of thisFunctional Interface
should be expected to receive Source-Code in many formats, along with a'Code Type'
that identifies what language is included in the Source-Code File. A'Style Type'
may also provided (if needed), but only two styles are used, internally, by theHiLiter
itself - one for "Complete File" Source-CodeString's
, and one for "Snippet."
The defaultHiLiter
is the one in theTorello.Java
package namedHiLiteMe
. This class is capable of providing a'Cache'
to avoid making internet-connections for code that has already been hilited and hasn't changed. Any subsequent / alternate implementations inserted into this JavaDoc Upgrader do not need to provide aCache
, but if HTTP Connections are utilized, it is of tremendous benefit.
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/HiLiter.java
- Open New Browser-Tab: Torello/JavaDoc/HiLiter.java
File Size: 4,003 Bytes Line Count: 89 '\n' Characters Found
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method static HiLiter
getDefault(Torello.HTML.Tools.SyntaxHiLite.HiLiteCache cache, String snippetStyleCode, String completeStyleCode)
Vector<HTMLNode>
hiLite(String code, String codeType, boolean snippetOrComplete)
-
-
-
Method Detail
-
hiLite
java.util.Vector<HTMLNode> hiLite(java.lang.String code, java.lang.String codeType, boolean snippetOrComplete) throws java.io.IOException, HiLiteException
ThisFunctional Interface
expects this method to be implemented. Any HiLiter that would be "plugged into" this Documentation Tool must be able to Pretty-Print HiLite input Source-Code (passed as ajava.lang.String
) and return HTML.
NOTE: Any Code HiLiter that can operate with this input may be plugged in here. In order to "Vectorize" HTML, just use theHTMLPage.getPageTokens(String, false)
method.- Parameters:
code
- This is the Source-Code as ajava.lang.String
codeType
- This is a short descriptor of what kind of code is being passed. The most frequent values for this parameter are:'java', 'html', 'js'
etc...snippetOrComplete
- This is aboolean
that whenTRUE
, indicates that a code-snippet has been passed, and whenFALSE
indicates that a complete source code file has been passed.- Returns:
- The intention is to return a Vectorized-HTML page (or sub-page) that contains a HiLited & Pretty-Printed version of the source-code.
- Throws:
java.io.IOException
- This method is not defined, but it is permitted to throwIOException
- if there have been I/O problems when attempting to transform the source-code.HiLiteException
- This exception may be used if other problems occur during the transformation process.
-
getDefault
static HiLiter getDefault (Torello.HTML.Tools.SyntaxHiLite.HiLiteCache cache, java.lang.String snippetStyleCode, java.lang.String completeStyleCode)
The Default Code HiLiter uses the packageTorello.HTML.Tools.SyntaxHiLite
.- Parameters:
cache
- This is the HiLiter-Cache that may or may not be used. If this parameter is passed'null'
, it will be ignored.snippetStyleCode
- Some of the source-code passed to thisHiLiter
will be short code-snippets, while other passed values of source-code will be complete source-code files. ThisString
is the'Style Parameter'
used for code-snippets.
You may view the complete-list of valid Style Parameters in use with this HiLiter withPygmentsOrg.getStyleTypes()
.completeStyleCode
- When theHiLiter
is asked to Hi-Lite and entire source code file, this parameter will be used for a'Style Parameter'
with theHiLiter
.- Returns:
- An instance of
HiLiter
that can be used by theUpgrade
Tool - Throws:
java.lang.IllegalArgumentException
- If invalid Styling-Parameters were passed either to'snippetStyleCode'
or'completeStyleCode'
.- See Also:
PygmentsOrg.prettyPrintScrapeToVectorAndSimplify(String, String, String, boolean)
,PygmentsOrg.prettyPrintScrapeToVectorAndSimplify(String, String, String, boolean, HiLiteCache)
- Code:
- Exact Method Body:
return Torello.HTML.Tools.SyntaxHiLite.JDUExport.JDUHiLiter.getDefault (cache, snippetStyleCode, completeStyleCode);
-
-