OSDN Git Service

@throwsコメント修正
authorOlyutorskii <olyutorskii@users.osdn.me>
Thu, 7 Oct 2010 11:53:37 +0000 (20:53 +0900)
committerOlyutorskii <olyutorskii@users.osdn.me>
Thu, 7 Oct 2010 11:53:37 +0000 (20:53 +0900)
src/main/java/jp/sourceforge/mikutoga/xml/DomUtils.java

index 97b80d1..e1750b8 100644 (file)
@@ -34,7 +34,7 @@ public final class DomUtils {
      * @param elem 要素\r
      * @param attrName 属性名\r
      * @return 文字列\r
-     * @throw TogaXmlException 属性値が見つからなかった。\r
+     * @throws TogaXmlException 属性値が見つからなかった。\r
      */\r
     public static String getStringAttr(Element elem, String attrName)\r
             throws TogaXmlException{\r
@@ -61,7 +61,7 @@ public final class DomUtils {
      * @param elem 要素\r
      * @param attrName 属性名\r
      * @return 真ならtrue\r
-     * @throw TogaXmlException 属性値が見つからなかった。\r
+     * @throws TogaXmlException 属性値が見つからなかった。\r
      */\r
     public static boolean getBooleanAttr(Element elem, String attrName)\r
             throws TogaXmlException{\r
@@ -85,7 +85,7 @@ public final class DomUtils {
      * @param elem 要素\r
      * @param attrName 属性名\r
      * @return int値\r
-     * @throw TogaXmlException 属性値が見つからなかった。\r
+     * @throws TogaXmlException 属性値が見つからなかった。\r
      */\r
     public static int getIntegerAttr(Element elem, String attrName)\r
             throws TogaXmlException{\r
@@ -109,7 +109,7 @@ public final class DomUtils {
      * @param elem 要素\r
      * @param attrName 属性名\r
      * @return float値\r
-     * @throw TogaXmlException 属性値が見つからなかった。\r
+     * @throws TogaXmlException 属性値が見つからなかった。\r
      */\r
     public static float getFloatAttr(Element elem, String attrName)\r
             throws TogaXmlException{\r
@@ -134,7 +134,7 @@ public final class DomUtils {
      * @param elem 要素\r
      * @param attrName 属性名\r
      * @return ファイル名\r
-     * @throw TogaXmlException 属性値が見つからなかった。\r
+     * @throws TogaXmlException 属性値が見つからなかった。\r
      */\r
     public static String getSjisFileNameAttr(Element elem, String attrName)\r
             throws TogaXmlException{\r
@@ -158,7 +158,7 @@ public final class DomUtils {
      * @param parent 親要素\r
      * @param tagName 子要素名\r
      * @return 子要素\r
-     * @throw TogaXmlException 1つも見つからなかった\r
+     * @throws TogaXmlException 1つも見つからなかった\r
      */\r
     public static Element getChild(Element parent, String tagName)\r
             throws TogaXmlException{\r