Method | Description | |
---|---|---|
Comparer ( ) : System |
Constructor for the
|
|
Comparer ( String ignore ) : System |
Constructor for the
|
|
Equals ( Annotation left, Annotation right ) : bool |
This is used to determine if two annotations are equals based on the attributes of the annotation. The comparison done can ignore specific attributes, for instance the name attribute.
|
|
IsIgnore ( Method method ) : bool |
This is used to determine if the method for an attribute is to be ignore. To determine if it should be ignore the method name is compared against the list of attributes to ignore.
|
public Comparer ( String ignore ) : System | ||
ignore | String | /// this is the set of attributes to be ignored /// |
return | System |
public Equals ( Annotation left, Annotation right ) : bool | ||
left | Annotation | /// this is the left side of the comparison done /// |
right | Annotation | /// this is the right side of the comparison done /// |
return | bool |
public IsIgnore ( Method method ) : bool | ||
method | Method | /// this is the method to be evaluated /// |
return | bool |