How would you implement this method:

public boolean equal(Annotation a1, Annotation a2) {
   ...
}

Sample input ():

@First(name="1", value="1"), @Second(name="1", value="1")
@First(value="2"),           @First(name="2")
@First(value="3"),           @First(value="3")
@Second(name="4", value="4), @Second(name="4", value="4")

Sample output:

false
false
true
true

As you can see, the expected behavior of equal is clear and similar to expected behavior of standard equals method of regular objects in java (the problem is that we cannot override equals for annotations).

Are there any libs or standard implementations?

link|improve this question

73% accept rate
feedback

1 Answer

Doesn't the overriden equals for Annotation work? Maybe I don't understand your question.

link|improve this answer
could you please show me how would you override equals on annotation class (let's take @Sample annotation as a start point; equals body doesn't really matter, just show where would you write it). thx. – Roman Jul 26 '11 at 6:42
It is already in Java for the annotations. Doesn't the default work for you? Have you looked at the link I provided? Maybe there is some misunderstanding... – Petar Minchev Jul 26 '11 at 6:47
maybe you're right, I'll investigate it (it's just not obvious how does it work since the actual equals implementation is somewhere else but not inside Annotation class). – Roman Jul 26 '11 at 6:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.