< prev index next >

src/java.base/share/classes/java/lang/reflect/Parameter.java

Print this page
rev 60127 : 8249205: Remove unnecessary trademark symbols

*** 110,120 **** } /** * Returns a string describing this parameter. The format is the * modifiers for the parameter, if any, in canonical order as ! * recommended by <cite>The Java&trade; Language * Specification</cite>, followed by the fully-qualified type of * the parameter (excluding the last [] if the parameter is * variable arity), followed by "..." if the parameter is variable * arity, followed by a space, followed by the name of the * parameter. --- 110,120 ---- } /** * Returns a string describing this parameter. The format is the * modifiers for the parameter, if any, in canonical order as ! * recommended by <cite>The Java Language * Specification</cite>, followed by the fully-qualified type of * the parameter (excluding the last [] if the parameter is * variable arity), followed by "..." if the parameter is variable * arity, followed by a space, followed by the name of the * parameter.
*** 245,255 **** /** * Returns {@code true} if this parameter is implicitly declared * in source code; returns {@code false} otherwise. * * @return true if and only if this parameter is implicitly ! * declared as defined by <cite>The Java&trade; Language * Specification</cite>. */ public boolean isImplicit() { return Modifier.isMandated(getModifiers()); } --- 245,255 ---- /** * Returns {@code true} if this parameter is implicitly declared * in source code; returns {@code false} otherwise. * * @return true if and only if this parameter is implicitly ! * declared as defined by <cite>The Java Language * Specification</cite>. */ public boolean isImplicit() { return Modifier.isMandated(getModifiers()); }
*** 260,270 **** * otherwise. * * @jls 13.1 The Form of a Binary * @return true if and only if this parameter is a synthetic * construct as defined by ! * <cite>The Java&trade; Language Specification</cite>. */ public boolean isSynthetic() { return Modifier.isSynthetic(getModifiers()); } --- 260,270 ---- * otherwise. * * @jls 13.1 The Form of a Binary * @return true if and only if this parameter is a synthetic * construct as defined by ! * <cite>The Java Language Specification</cite>. */ public boolean isSynthetic() { return Modifier.isSynthetic(getModifiers()); }
< prev index next >