Uses of Class
org.mockcentral.editor.nodes.expectation_group.MockableMethod

Packages that use MockableMethod
org.mockcentral.editor.nodes.expectation Contains classes and interfaces used for editing the method expectations for Mock Object definitions. 
org.mockcentral.editor.nodes.expectation_group Contains classes and interfaces used for editing the group of method expectations for Mock Object definitions. 
 

Uses of MockableMethod in org.mockcentral.editor.nodes.expectation
 

Methods in org.mockcentral.editor.nodes.expectation that return MockableMethod
 MockableMethod ExpectationDataBean.getMethod()
          Returns the MockableMethod.
 

Methods in org.mockcentral.editor.nodes.expectation with parameters of type MockableMethod
 void ExpectationDataBean.setMethod(MockableMethod method)
          Sets the MockableMethod.
 

Uses of MockableMethod in org.mockcentral.editor.nodes.expectation_group
 

Methods in org.mockcentral.editor.nodes.expectation_group that return types with arguments of type MockableMethod
 MockCentralTableModel<MockableMethod> ExpectationGroupModel.getMethodNamesTableModel(java.lang.Class<?> clazz, boolean includeObjectMethods)
           
 MockCentralTableModel<MockableMethod> IMethodsListEditor.getMethodNamesTableModel(java.lang.Class<?> clazz, boolean includeObjectMethods)
          Returns a MockCentralTableModel build from the supplied Class instance's methods.
 java.util.List<MockableMethod> ExpectationGroupDataBean.getMethods()
          Returns the List of MockableMethod instances.
 MockCentralTableModel<MockableMethod> MockableMethodsTableModelBuilder.getTableModel(java.lang.Class<?> clazz, boolean includeObjectMethods, boolean allowOverloads)
          Returns a new MockCentralTableModel containing the available Method instances to use to automatically generate Mock Object method expectations.
 

Methods in org.mockcentral.editor.nodes.expectation_group with parameters of type MockableMethod
static java.lang.String MockableMethodDescriber.getDescription(MockableMethod mockableMethod, java.lang.Class<?> interfaceClass)
          Returns a descriptive String representing the supplied MockableMethod.
 

Method parameters in org.mockcentral.editor.nodes.expectation_group with type arguments of type MockableMethod
 void ExpectationGroupDataBean.setMethods(java.util.List<MockableMethod> methods)
          Sets the List of MockableMethod instances.