Skip to content

Commit 1963610

Browse files
committed
alphabetical index no longer shows class methods loaded through xml.
1 parent 8454a69 commit 1963610

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed
Binary file not shown.

java_generate/ReferenceGenerator/src/writers/XMLReferenceWriter.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,12 @@ public static void parseFile(File f, String dst, IndexWriter indexWriter)
9797
}
9898
String anchor = anchorBase + ".html";
9999
String usage = (String) xpath.evaluate("//usage", doc, XPathConstants.STRING);
100-
if(indexWriter instanceof LibraryIndexWriter ){
100+
if(indexWriter instanceof LibraryIndexWriter )
101+
{
101102
((LibraryIndexWriter) indexWriter).addEvent(name, anchor);
102103
vars.put("csspath", "../../");
103-
} else {
104+
} else if( ! subcategory.equals("Method") )
105+
{
104106
indexWriter.addItem(category, subcategory, name, anchor);
105107
}
106108

todo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ x 'long' appearing in reference when it should be 'int' e.g. randomSeed(long) an
125125
x Alphabetical Index file is incorrectly alphabetized (for people) and should break at letter changes (e.g. between A and B)
126126
Capital letters should be integrated with the lowercase letters, rather than at the beginning.
127127
Implemented a custom Comparator for alphabetization. Now human-style
128-
$ Alphabetical index is incorrectly showing class methods
128+
x Alphabetical index is incorrectly showing class methods
129129
Need to remove String_charAt_ and other methods from the alphabetical index (they don't appear in categories)
130130

131131
// // // // // // // // // // // // // // // // // // // // //

0 commit comments

Comments
 (0)