< prev index next >

src/java.desktop/share/classes/sun/font/ScriptRun.java

Print this page

        

@@ -136,11 +136,11 @@
 
     /**
      * Get the script code for the script of the current script run.
      *
      * @return the script code for the script of the current script run.
-     * @see #Script
+     * @see Script
      */
     public int getScriptCode() {
         return scriptCode;
     }
 

@@ -272,11 +272,11 @@
      * a strong script, and the other is INHERITED or COMMON, it will compare equal.
      *
      * @param scriptOne one of the script codes.
      * @param scriptTwo the other script code.
      * @return <code>true</code> if the two scripts are the same.
-     * @see com.ibm.icu.lang.Script
+     * @see Script
      */
     private static boolean sameScript(int scriptOne, int scriptTwo) {
         return scriptOne == scriptTwo || scriptOne <= Script.INHERITED || scriptTwo <= Script.INHERITED;
     }
 
< prev index next >