- java.lang.Object
-
- ilusr.core.mvpbase.MethodSignature
-
public class MethodSignature extends Object
-
-
Constructor Summary
Constructors Constructor Description MethodSignature(String name, Class input)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassmethodInput()voidmethodInput(Class input)StringmethodName()voidmethodName(String name)
-
-
-
Method Detail
-
methodName
public String methodName()
- Returns:
- The name of the method.
-
methodName
public void methodName(String name)
- Parameters:
name- The new name for the method.
-
methodInput
public Class methodInput()
- Returns:
- The type of the data.
-
methodInput
public void methodInput(Class input)
- Parameters:
input- The new type for the data.
-
-