OSDN Git Service

modify javadoc warnings.
authorOlyutorskii <olyutorskii@users.osdn.me>
Wed, 19 Feb 2020 01:32:59 +0000 (10:32 +0900)
committerOlyutorskii <olyutorskii@users.osdn.me>
Wed, 19 Feb 2020 01:32:59 +0000 (10:32 +0900)
src/main/java/jp/sfjp/jindolf/Controller.java
src/main/java/jp/sfjp/jindolf/dxchg/WebIPCDialog.java
src/main/java/jp/sfjp/jindolf/dxchg/WolfBBS.java
src/main/java/jp/sfjp/jindolf/editor/TextEditor.java
src/main/java/jp/sfjp/jindolf/glyph/TalkDraw.java
src/main/java/jp/sfjp/jindolf/view/ActionManager.java

index 333268a..1d67b7e 100644 (file)
@@ -513,7 +513,7 @@ public class Controller
     }
 
     /**
-     * L&Fの変更を行う。
+     * L&amp;Fの変更を行う。
      */
     private void actionChangeLaF(){
         String className = this.actionManager.getSelectedLookAndFeel();
@@ -1669,8 +1669,8 @@ public class Controller
     /**
      * ヘビーなタスク実行をアピール。
      * プログレスバーとカーソルの設定を行う。
-     * @param isBusy trueならプログレスバーのアニメ開始&WAITカーソル。
-     *                falseなら停止&通常カーソル。
+     * @param isBusy trueならプログレスバーのアニメ開始&amp;WAITカーソル。
+     *                falseなら停止&amp;通常カーソル。
      */
     private void setBusy(final boolean isBusy){
         this.isBusyNow = isBusy;
index 1a81f60..8c4582b 100644 (file)
@@ -563,7 +563,7 @@ public class WebIPCDialog extends JDialog {
         }
 
         /**
-         * D&Dに成功したらダイアログを閉じる。
+         * D&amp;Dに成功したらダイアログを閉じる。
          *
          * <p>{@inheritDoc}
          *
index 2dfed6b..c3e3d12 100644 (file)
@@ -35,7 +35,7 @@ import jp.sourceforge.jindolf.corelib.GameRole;
 /**
  * まちゅ氏運営のまとめサイト(wolfbbs)に関する諸々。
  *
- * PukiWikiベース。
+ * <p>PukiWikiベース。
  *
  * @see <a href="https://wolfbbs.jp/">まとめサイト</a>
  * @see <a href="https://pukiwiki.osdn.jp/">PukiWiki</a>
@@ -341,7 +341,7 @@ public final class WolfBBS{
     /**
      * 数値参照文字に変換された文字を追加する。
      *
-     * 例){@literal 'D' => "&#x44;}"
+     * <p>例){@literal 'D' => "&#x44;}"
      *
      * @param app 追加対象
      * @param ch 1文字
@@ -364,7 +364,7 @@ public final class WolfBBS{
     /**
      * 任意の文字を数値参照文字列に変換する。
      *
-     * 例){@literal 'D' => "&#x44;"}
+     * <p>例){@literal 'D' => "&#x44;"}
      *
      * @param ch 文字
      * @return 変換後の文字列
@@ -383,7 +383,7 @@ public final class WolfBBS{
     /**
      * ColorのRGB各成分をWikiカラー表記に変換する。
      *
-     * α成分は無視される。
+     * <p>α成分は無視される。
      *
      * @param color 色
      * @return Wikiカラー表記
index 6ada0d2..9471ca3 100644 (file)
@@ -174,12 +174,12 @@ public class TextEditor extends JTextArea
             if(onIMEoperation()) return true;
 
             if(ch == '\n') return true;
-//          if(ch == '\f') return true;
+            // if(ch == '\f') return true;
 
             if(ch == '\uffff')             return false;
             if(Character.isISOControl(ch)) return false;
 
-//          if( ! CodeX0208.isValid(ch) ) return false;
+            // if( ! CodeX0208.isValid(ch) ) return false;
             if(Character.isHighSurrogate(ch)) return false;
             if(Character.isLowSurrogate(ch) ) return false;
 
@@ -201,7 +201,8 @@ public class TextEditor extends JTextArea
                 char ch = input.charAt(pos);
                 if(ch == '\u2211') ch = '\u03a3'; // Σ変換
                 if(ch == '\u00ac') ch = '\uffe2'; // ¬変換
-//              if(ch ==  0x005c ) ch = '\u00a5'; // バックスラッシュから円へ
+                // if(ch ==  0x005c ) ch = '\u00a5';
+                // バックスラッシュから円へ
                 if(isValid(ch)) buf.append(ch);
             }
 
index d6cbf2d..2544af4 100644 (file)
@@ -693,11 +693,12 @@ public class TalkDraw extends AbstractTextRow{
         int total = 0;
 
         total += this.dialog.setRegex(searchRegex);
-/*
+        /*
         for(AnchorDraw anchorDraw : this.anchorTalks){
             total += anchorDraw.setRegex(searchRegex);
         }
-*/ // TODO よくわからんので保留
+        */
+        // TODO よくわからんので保留
         return total;
     }
 
index 10c5abe..e33057c 100644 (file)
@@ -295,10 +295,10 @@ public class ActionManager{
     }
 
     /**
-     * L&F 一覧メニューを作成する。
+     * L&amp;F 一覧メニューを作成する。
      * @param label メニューラベル
      * @param nemonic ニモニックキー
-     * @return L&F 一覧メニュー
+     * @return L&amp;F 一覧メニュー
      */
     private JMenu buildLookAndFeelMenu(String label, int nemonic){
         JMenu result = buildMenu(label, nemonic);