You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Jörg Gottschling (JIRA)" <ji...@apache.org> on 2008/01/06 17:16:34 UTC

[jira] Updated: (LANG-395) annotations based builders

     [ https://issues.apache.org/jira/browse/LANG-395?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jörg Gottschling updated LANG-395:
----------------------------------

    Fix Version/s:     (was: LangTwo 1.0)

> annotations based builders
> --------------------------
>
>                 Key: LANG-395
>                 URL: https://issues.apache.org/jira/browse/LANG-395
>             Project: Commons Lang
>          Issue Type: New Feature
>    Affects Versions: LangTwo 1.0
>            Reporter: Jörg Gottschling
>
> What about enabling the builders (ToStringBuilder, EqualsBuilder, etc.) that use reflection to use annotations to find the field to include?
> Something like:
> ToStringBuilder.annotationsBasedToString(Object object, Class<Annotation> class, Class<?> reflectUpToClass)
> One could use the JPA-Annotation @ID for example, espescially for Equals- and HashCodeBuilder. There should also be some default annotation comming with LangTwo.
> Usage:
> public class User
> {
>   @StringRepresentation
>   @EqualsAndHashCode
>   private String name
>   @StringRepresentation
>   private String email;
>   private String password;
>   // ...
>   @Override
>   public String toString()
>   {
>     return annotationsBasedToString(this);
>   }
>   @Override
>   public boolean equals(Object other)
>   {
>     return annotationsBasedEquals(this, other);
>   }
>   @Override
>   public int hashCode()
>   {
>     return annotationsBasedHashCode(this);
>   }
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.