From 79d27793027300b745ff99e53cc5589df22993aa Mon Sep 17 00:00:00 2001 From: Olyutorskii Date: Thu, 7 Oct 2010 20:53:37 +0900 Subject: [PATCH] =?utf8?q?@throws=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?utf8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/main/java/jp/sourceforge/mikutoga/xml/DomUtils.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/jp/sourceforge/mikutoga/xml/DomUtils.java b/src/main/java/jp/sourceforge/mikutoga/xml/DomUtils.java index 97b80d1..e1750b8 100644 --- a/src/main/java/jp/sourceforge/mikutoga/xml/DomUtils.java +++ b/src/main/java/jp/sourceforge/mikutoga/xml/DomUtils.java @@ -34,7 +34,7 @@ public final class DomUtils { * @param elem 要素 * @param attrName 属性名 * @return 文字列 - * @throw TogaXmlException 属性値が見つからなかった。 + * @throws TogaXmlException 属性値が見つからなかった。 */ public static String getStringAttr(Element elem, String attrName) throws TogaXmlException{ @@ -61,7 +61,7 @@ public final class DomUtils { * @param elem 要素 * @param attrName 属性名 * @return 真ならtrue - * @throw TogaXmlException 属性値が見つからなかった。 + * @throws TogaXmlException 属性値が見つからなかった。 */ public static boolean getBooleanAttr(Element elem, String attrName) throws TogaXmlException{ @@ -85,7 +85,7 @@ public final class DomUtils { * @param elem 要素 * @param attrName 属性名 * @return int値 - * @throw TogaXmlException 属性値が見つからなかった。 + * @throws TogaXmlException 属性値が見つからなかった。 */ public static int getIntegerAttr(Element elem, String attrName) throws TogaXmlException{ @@ -109,7 +109,7 @@ public final class DomUtils { * @param elem 要素 * @param attrName 属性名 * @return float値 - * @throw TogaXmlException 属性値が見つからなかった。 + * @throws TogaXmlException 属性値が見つからなかった。 */ public static float getFloatAttr(Element elem, String attrName) throws TogaXmlException{ @@ -134,7 +134,7 @@ public final class DomUtils { * @param elem 要素 * @param attrName 属性名 * @return ファイル名 - * @throw TogaXmlException 属性値が見つからなかった。 + * @throws TogaXmlException 属性値が見つからなかった。 */ public static String getSjisFileNameAttr(Element elem, String attrName) throws TogaXmlException{ @@ -158,7 +158,7 @@ public final class DomUtils { * @param parent 親要素 * @param tagName 子要素名 * @return 子要素 - * @throw TogaXmlException 1つも見つからなかった + * @throws TogaXmlException 1つも見つからなかった */ public static Element getChild(Element parent, String tagName) throws TogaXmlException{ -- 2.11.0