some outdated docs cleanup
This commit is contained in:
@@ -6,7 +6,6 @@ javadoc -docletpath ../../target/TeXDoclet.jar \
|
||||
-doclet org.stfm.texdoclet.TeXDoclet \
|
||||
-tree \
|
||||
-hyperref \
|
||||
-texinit texdoclet_include/preamble.tex \
|
||||
-imagespath ".." \
|
||||
-output texdoclet_output/TeXDoclet.tex \
|
||||
-title "TeXDoclet Java Documentation" \
|
||||
|
||||
@@ -69,12 +69,12 @@ public class HTMLtoLaTeXBackEnd extends HTMLEditorKit.ParserCallback {
|
||||
/**
|
||||
* Constructs a new instance.
|
||||
*
|
||||
* @param StringBuffer
|
||||
* @param stringBuffer
|
||||
* The <CODE>StringBuffer</CODE> where the translated HTML is
|
||||
* appended.
|
||||
*/
|
||||
public HTMLtoLaTeXBackEnd(StringBuffer ret) {
|
||||
this.ret = ret;
|
||||
public HTMLtoLaTeXBackEnd(StringBuffer stringBuffer) {
|
||||
this.ret = stringBuffer;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -663,7 +663,7 @@ public class HTMLtoLaTeXBackEnd extends HTMLEditorKit.ParserCallback {
|
||||
* Converts a HTML string into <TEX txt="\LaTeX{}">LaTeX</TEX> using an
|
||||
* instance of <CODE>HTMLtoLaTeXBackEnd</CODE>.
|
||||
*
|
||||
* @returns The converted string.
|
||||
* @return The converted string.
|
||||
*/
|
||||
public static String fixText(String str) {
|
||||
// System.out.println("fixText: " + str);
|
||||
|
||||
@@ -104,15 +104,11 @@ public class TableInfo {
|
||||
* Constructs a new table object and starts processing of the table by
|
||||
* scanning the <code><table></code> passed to count columns.
|
||||
*
|
||||
* @param p
|
||||
* properties found on the <code><table></code> tag
|
||||
* @param ret
|
||||
* the result buffer that will contain the output
|
||||
* @param table
|
||||
* the input string that has the entire table definition in it.
|
||||
* @param off
|
||||
* the offset into <code><table></code> where scanning
|
||||
* should start
|
||||
* //@param p // properties found on the <code><table></code> tag
|
||||
* //@param ret // the result buffer that will contain the output //@param
|
||||
* table // the input string that has the entire table definition in it.
|
||||
* //@param off // the offset into <code><table></code> where scanning
|
||||
* // should start
|
||||
*/
|
||||
public StringBuffer startTable(StringBuffer org, MutableAttributeSet attrSet) {
|
||||
originalBuffer = org;
|
||||
@@ -165,9 +161,6 @@ public class TableInfo {
|
||||
/**
|
||||
* Ends the table, closing the last row as needed
|
||||
*
|
||||
* @param ret
|
||||
* The output buffer to put <TEX txt="\LaTeXe{}">LaTeX2e</TEX>
|
||||
* into.
|
||||
*/
|
||||
public StringBuffer endTable() {
|
||||
originalBuffer.append("\n% Table #" + tblno + "\n\\begin{center}\n");
|
||||
@@ -217,11 +210,8 @@ public class TableInfo {
|
||||
/**
|
||||
* Starts a new column, possibly closing the current column if needed
|
||||
*
|
||||
* @param ret
|
||||
* The output buffer to put <TEX txt="\LaTeXe{}">LaTeX2e</TEX>
|
||||
* into.
|
||||
* @param p
|
||||
* the properties from the <code><td></code> tag
|
||||
* //@param ret The output buffer to put <TEX txt="\LaTeXe{}">LaTeX2e</TEX>
|
||||
* into. //@param p the properties from the <code><td></code> tag
|
||||
*/
|
||||
public void startCol(MutableAttributeSet attrSet) {
|
||||
int span = hasNumAttr(HTML.Attribute.COLSPAN, attrSet);
|
||||
@@ -271,11 +261,8 @@ public class TableInfo {
|
||||
* Starts a new Heading column, possibly closing the current column if
|
||||
* needed. A Heading column has a Bold Face font directive around it.
|
||||
*
|
||||
* @param ret
|
||||
* The output buffer to put <TEX txt="\LaTeXe{}">LaTeX2e</TEX>
|
||||
* into.
|
||||
* @param p
|
||||
* The properties from the <code><th></code> tag
|
||||
* //@param ret The output buffer to put <TEX txt="\LaTeXe{}">LaTeX2e</TEX>
|
||||
* into. //@param p The properties from the <code><th></code> tag
|
||||
*/
|
||||
public void startHeadCol(MutableAttributeSet attrSet) {
|
||||
startCol(attrSet);
|
||||
@@ -285,8 +272,7 @@ public class TableInfo {
|
||||
/**
|
||||
* Ends the current column.
|
||||
*
|
||||
* @param ret
|
||||
* The output buffer to put <TEX txt="\LaTeXe{}">LaTeX2e</TEX>
|
||||
* //@param ret The output buffer to put <TEX txt="\LaTeXe{}">LaTeX2e</TEX>
|
||||
* into.
|
||||
*/
|
||||
public void endCol() {
|
||||
@@ -300,10 +286,8 @@ public class TableInfo {
|
||||
/**
|
||||
* Starts a new row, possibly closing the current row if needed
|
||||
*
|
||||
* @param ret
|
||||
* The output buffer to put <TEX txt="\LaTeX{}">LaTeX</TEX> into.
|
||||
* @param p
|
||||
* The properties from the <code><tr></code> tag
|
||||
* //@param ret The output buffer to put <TEX txt="\LaTeX{}">LaTeX</TEX>
|
||||
* into. //@param p The properties from the <code><tr></code> tag
|
||||
*/
|
||||
public void startRow(MutableAttributeSet attrSet) {
|
||||
if (rowcnt == 0) {
|
||||
@@ -318,8 +302,7 @@ public class TableInfo {
|
||||
/**
|
||||
* Ends the current row.
|
||||
*
|
||||
* @param ret
|
||||
* The output buffer to put <TEX txt="\LaTeXe{}">LaTeX2e</TEX>
|
||||
* // @param ret The output buffer to put <TEX txt="\LaTeXe{}">LaTeX2e</TEX>
|
||||
* into.
|
||||
*/
|
||||
public void endRow() {
|
||||
|
||||
Reference in New Issue
Block a user