From: Olyutorskii Date: Thu, 7 Oct 2010 11:53:37 +0000 (+0900) Subject: @throwsコメント修正 X-Git-Tag: fromMercurial~93 X-Git-Url: http://git.osdn.net/view?p=mikutoga%2FTogaGem.git;a=commitdiff_plain;h=79d27793027300b745ff99e53cc5589df22993aa;hp=e29259d427979107d9bf3791696bb7d479e15bcb @throwsコメント修正 --- 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{