Donate Share

commonclipse

Code

Programming Languages: Java

License: Apache Software License

Repositories

browse code, statistics, last commit on 2006-02-27 svn co https://commonclipse.svn.sourceforge.net/svnroot/commonclipse commonclipse

Show:

What's happening?

  • Comment: Weird error

    This is because the EqualsBuilder.appendSuper() is appending the super.equals() method. Your class' super is Object. Object.equals() compares the references and returns true only if the objects are the same. Remove the appendSuper() from the EqualsBuilder where the class doesn't extend anything (except, of course, Object). While not as harmful, you should likewise remove the...

    2008-04-10 19:07:05 UTC by nobody

  • Commonclipse not installable in Eclipse 3.2.2

    Tried to download eclipse via update manager (Eclipse 3.2.2), the update manager reported the following error: nt.sf.commonclipse(1.3.0) platform architecture does not match current envorinment. daniel.rodriguez@quyne.com.

    2007-05-18 17:41:25 UTC by nobody

  • generateSerialVersionUID

    Command to generate the serial version UID of a Serializable class. It would be great to have such a tool. I have looked everywhere and the only thing close to this that I could find was an ant task that is hard to configure and run. But this way everyone would be able to easily generate SVUIDs for their classes before a release and so serializing problems would disappear.

    2007-05-14 06:03:48 UTC by d0ddy

  • Exclude Packages

    Enhancement request. Allow excluding of packages. Such as com.mycompany.objects.*. I am interested in this because I am using Hibernate, and sometimes the toString() method references Objects that haven't been loaded, and shouldn't need to be. This throws a runtime exception, so I have to go back and manually go back and remove these references. I could also change the Fetching to EAGER...

    2007-04-17 03:27:02 UTC by chip33550336

  • Add @Override

    It is considered good practice to always use @Override so it would be cool if Commonclipse could do it too. The usage of the annotation could be conditional to the VM version (so Java 1.4 users could still enjoy Commonclipse).

    2007-04-13 19:33:13 UTC by ddossot

  • Weird error

    I have run into a strange problem: when running this basic Java class I get always false although is should be true. Commons-lang 2.2, commonclipse 1.3.0 Am I missing something here? Thanks in advance import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder; public class Dummy { static String NAME = "test"; public static...

    2007-02-19 14:28:35 UTC by rocha_84

  • Select which fields to include

    You should be able to check which fields to include and the order, and then check which methods to create (equals, hashcode and compareTo). Something similar to the options to create equals and hashcode from Eclipse 3.2, but using commons.

    2007-01-12 21:26:21 UTC by carango

  • Force linebreaks

    It would be nice to have an option to force linebreaks (using // comments) instead having the Eclipse code formatter split long lines, e.g. /** * @see java.lang.Object#equals(Object) */ public boolean equals(final Object object) { if (!(object instanceof MyObject)) { return false; } MyObject rhs = (MyObject) object; return new EqualsBuilder() //...

    2007-01-10 11:06:27 UTC by condor70

  • Natural property/field order

    When I design a class I normally put the fields in some kind of logical order. I would like the option to order the properties/fields in the toString method according to the order the getters/fields are defined in the class (instead of alphabetical).

    2007-01-10 10:28:58 UTC by condor70

  • commonclipse

    fgiust committed revision 82 to the commonclipse SVN repository, changing 1 files.

    2006-02-27 20:52:57 UTC by fgiust

Our Numbers