< prev index next >

jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/JModuleDirective.java

Print this page

        

*** 92,109 **** } /** * Returns a hash code for this module directive based on directive type and name. ! * The hash code for a module directive is computed as <blockquote><pre> ! * 97 * Integer.hashCode(type_ordinal_value + 1) + name.hashCode() ! * </pre></blockquote> using {@code int} arithmetic. * @return a hash code value for this object. */ @Override public int hashCode() { ! return 97 * (Integer.valueOf(getType().ordinal() + 1)).hashCode() + name.hashCode(); } /** * Gets the name of this module directive. * @return name of this module directive. --- 92,112 ---- } /** * Returns a hash code for this module directive based on directive type and name. ! * The hash code for a module directive is computed as ! * <blockquote><pre> ! * {@code 97 * (type_ordinal_value + 1) + name.hashCode()} ! * </pre></blockquote> ! * using {@code int} arithmetic. ! * * @return a hash code value for this object. */ @Override public int hashCode() { ! return 97 * (getType().ordinal() + 1) + name.hashCode(); } /** * Gets the name of this module directive. * @return name of this module directive.
< prev index next >