|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectweka.core.xml.MethodHandler
public class MethodHandler
This class handles relationships between display names of properties (or classes) and Methods that are associated with them.
| Constructor Summary | |
|---|---|
MethodHandler()
initializes the handler |
|
| Method Summary | |
|---|---|
void |
add(Class c,
Method method)
adds the specified method for the given class to its internal list. |
void |
add(String displayName,
Method method)
adds the specified method for the property with the given displayname to its internal list. |
void |
clear()
removes all mappings |
boolean |
contains(Class c)
checks whether a method is stored for the given class |
boolean |
contains(String displayName)
checks whether a method is stored for the given property |
Method |
get(Class c)
returns the stored method for the given class |
Method |
get(String displayName)
returns the stored method for the given property |
String |
getRevision()
Returns the revision string. |
Enumeration |
keys()
returns an enumeration over all currently stored custom methods, i.e. |
boolean |
remove(Class c)
removes the method for the specified class from its internal list. |
boolean |
remove(String displayName)
removes the method for the property specified by the display name from its internal list. |
int |
size()
returns the number of currently stored Methods |
String |
toString()
returns the internal Hashtable (propety/class - method relationship) in a string representation |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public MethodHandler()
| Method Detail |
|---|
public Enumeration keys()
m_Methods
public void add(String displayName,
Method method)
displayName - the display name of the property to handle manuallymethod - the method, which will be invoked by reflection to handle
the property manuallym_Methods
public void add(Class c,
Method method)
c - the class to handle manuallymethod - the method, which will be invoked by reflection to handle
the property manuallym_Methodspublic boolean remove(String displayName)
displayName - the display name of the propery to remove the custom
method for
m_Methodspublic boolean remove(Class c)
c - the class to remove the custom method for
m_Methodspublic boolean contains(String displayName)
displayName - the display name of the property to check for a method
m_Methodspublic boolean contains(Class c)
c - the class to check for a method
m_Methodspublic Method get(String displayName)
displayName - the display name of the property to retrieve the
method for
nullm_Methodspublic Method get(Class c)
c - the class to retrieve the method for
nullm_Methodspublic int size()
public void clear()
public String toString()
toString in class Objectpublic String getRevision()
getRevision in interface RevisionHandler
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||