X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Forg%2Fjson%2FJSONPropertyName.java;h=7b558f96d7f6094dee045f3646edfc9ccacdd461;hb=3ec49f04ac668312e8eb3e963c52df6797fea89f;hp=a1bcd58bf1046e26f586ad8c0563c6326e66fe26;hpb=6e56c166e45d1af37c5531b4cbe909a3e110927e;p=jalview.git diff --git a/src/org/json/JSONPropertyName.java b/src/org/json/JSONPropertyName.java index a1bcd58..7b558f9 100644 --- a/src/org/json/JSONPropertyName.java +++ b/src/org/json/JSONPropertyName.java @@ -33,15 +33,16 @@ import java.lang.annotation.Target; @Documented @Retention(RUNTIME) -@Target({METHOD}) +@Target({ METHOD }) /** - * Use this annotation on a getter method to override the Bean name - * parser for Bean -> JSONObject mapping. A value set to empty string "" + * Use this annotation on a getter method to override the Bean name parser for + * Bean -> JSONObject mapping. A value set to empty string "" * will have the Bean parser fall back to the default field name processing. */ -public @interface JSONPropertyName { - /** - * @return The name of the property as to be used in the JSON Object. - */ - String value(); +public @interface JSONPropertyName +{ + /** + * @return The name of the property as to be used in the JSON Object. + */ + String value(); }