public interface AttributeRepositoryClass
Modifier and Type | Method and Description |
---|---|
java.util.Set |
getClassAttributes()
Returns a set containing all attributes (instances) associated with this class.
|
java.util.Map |
getConstructorAttributes()
Returns a map with String keys and List values.
|
java.util.Map |
getFieldAttributes()
Returns a map with String keys and Set values.
|
java.util.Map |
getMethodAttributes()
Returns a map with String keys and List values.
|
java.util.Set getClassAttributes()
java.util.Map getFieldAttributes()
java.util.Map getMethodAttributes()
list.get(0) = A Set with the attributes associated with the method.
list.get(1) = A Set with the attributes associated with the method's return value.
list.get(2) = A Set with the attributes associated with the method's first parameter.
list.get(n) = A Set with the attributes associated with the method's (n - 1) th parameter.
All slots in the list must be filled, not just those where there are attributes.
Should not return any attributes of superclasses etc.
java.util.Map getConstructorAttributes()
list.get(0) = A Set with the attributes associated with the constructor.
list.get(1) = A Set with the attributes associated with the constructor's first parameter.
list.get(n) = A Set with the attributes associated with the constructor's (n - 1) th parameter.
All slots in the list must be filled, not just those where there are attributes.
Should not return any attributes of superclasses etc.