OSDN Git Service

1.6化に伴う@Overrideアノテーション対応
[mikutoga/TogaGem.git] / src / main / java / jp / sourceforge / mikutoga / corelib / I18nText.java
index 3cfffba..50e2fb7 100644 (file)
@@ -265,6 +265,7 @@ public class I18nText implements CharSequence {
      * @param index {@inheritDoc}\r
      * @return {@inheritDoc}\r
      */\r
+    @Override\r
     public char charAt(int index){\r
         String text = getText();\r
         char result = text.charAt(index);\r
@@ -276,6 +277,7 @@ public class I18nText implements CharSequence {
      * {@link #getText()}に準ずる。\r
      * @return {@inheritDoc}\r
      */\r
+    @Override\r
     public int length(){\r
         String text = getText();\r
         int result = text.length();\r
@@ -289,6 +291,7 @@ public class I18nText implements CharSequence {
      * @param end {@inheritDoc}\r
      * @return {@inheritDoc}\r
      */\r
+    @Override\r
     public CharSequence subSequence(int start, int end){\r
         String text = getText();\r
         CharSequence result = text.subSequence(start, end);\r