Home | History | Annotate | Download | only in doclava

Lines Matching full:fullname

125   public String fullName() {
129 return fullName(new HashSet<String>());
138 result += arg.fullName(typeVars);
148 public String fullName(HashSet<String> typeVars) {
154 String fullName = null;
164 * if (fullName != null) { return fullName; }
166 fullName = mQualifiedTypeName;
168 fullName += typeArgumentsName(mTypeArguments, typeVars);
172 fullName += " super " + superBound.fullName(typeVars);
174 fullName += " & " + superBound.fullName(typeVars);
180 fullName += " extends " + extendsBound.fullName(typeVars);
182 fullName += " & " + extendsBound.fullName(typeVars);
186 return fullName;