Lines Matching refs:fld

774                     FieldAPI fld = (FieldAPI)(iterField.next());
775 fieldNames.add(new Index(fld.name_, 0, pkgName, className, fld.type_, true));
779 FieldAPI fld = (FieldAPI)(iterField.next());
780 Index idx = new Index(fld.name_, 1, pkgName, className, fld.type_, true);
781 idx.doc_ = fld.doc_; // Used for checking @since
786 MemberDiff fld = (MemberDiff)(iterField.next());
787 fieldNames.add(new Index(fld.name_, 2, pkgName, className, fld.newType_, true));
799 public char emitFieldIndexEntry(Index fld, char oldsw,
802 String className = fld.pkgName_ + "." + fld.className_;
803 String memberRef = fld.pkgName_ + "." + fld.className_;
804 String type = fld.type_;
809 char sw = fld.name_.charAt(0);
822 h_.writeText("<i>" + fld.name_ + "</i><br>");
828 if (fld.changeType_ == 0) {
829 String commentID = className + "." + fld.name_;
831 h_.writeText("<nobr><A HREF=\"" + memberRef + h_.reportFileExt + "#" + commentID + "\" class=\"hiddenlink\" target=\"rightframe\"><strike>" + fld.name_ + "</strike></A>");
837 } else if (fld.changeType_ == 1) {
838 String commentID = className + "." + fld.name_;
840 h_.writeText("<nobr><A HREF=\"" + memberRef + h_.reportFileExt + "#" + commentID + "\" class=\"hiddenlink\" target=\"rightframe\">" + fld.name_ + "</A>");
846 } else if (fld.changeType_ == 2) {
847 String commentID = className + "." + fld.name_;
849 h_.writeText("<nobr><A HREF=\"" + memberRef + h_.reportFileExt + "#" + commentID + "\" class=\"hiddenlink\" target=\"rightframe\">" + fld.name_ + "</A>");
1072 * The boolean <code>fld</code> is simply there to differentiate this
1076 String className, String type, boolean fld) {