Uses of Class
org.mockcentral.editor.nodes.problem.NodeProblem

Packages that use NodeProblem
org.mockcentral.editor.dialogs Contains interfaces and an enum used for creating and processing dialogs for editors used to edit MockCentral configuration files. 
org.mockcentral.editor.nodes.expectation Contains classes and interfaces used for editing the method expectations for Mock Object definitions. 
org.mockcentral.editor.nodes.expectation.part Contains classes and interfaces used for editing the parameters or expected results for method expectations for Mock Object definitions. 
org.mockcentral.editor.nodes.fixture Contains classes and interfaces used for editing Fixture instances used to group Mock Object definitions. 
org.mockcentral.editor.nodes.problem Contains classes, interfaces and enums used for managing problems associated with MockCentralNode instances. 
org.mockcentral.editor.outline Contains an interface (IMockCentralEditorOutline) defining methods for the tree-type viewer used for selecting MockObjectNode instances for editing. 
org.mockcentral.editor.viewers Contains classes and an interface used for constructing UI elements needed for displaying data in table or tree-type viewers. 
 

Uses of NodeProblem in org.mockcentral.editor.dialogs
 

Methods in org.mockcentral.editor.dialogs that return types with arguments of type NodeProblem
 java.util.List<NodeProblem> IMockCentralDialogInputValidator.isValid(java.lang.Object... input)
          Returns a list of NodeProblem objects generated during validation of the supplied input.
 

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

Methods in org.mockcentral.editor.nodes.expectation that return NodeProblem
 NodeProblem ExpectationModel.getNodeProblem(java.lang.Object o)
           
 

Method parameters in org.mockcentral.editor.nodes.expectation with type arguments of type NodeProblem
static org.mockcentral.server.SignaturePartBean ExpectationElementBuilder.createSignaturePartBean(org.jdom.Element e, java.util.List<NodeProblem> nodeProblems)
          Returns a new SignaturePartBean constructed from data in the supplied Element.
 

Uses of NodeProblem in org.mockcentral.editor.nodes.expectation.part
 

Methods in org.mockcentral.editor.nodes.expectation.part that return types with arguments of type NodeProblem
 java.util.List<NodeProblem> ThrowableDefinitionValidator.isValid(java.lang.Object... input)
           
static java.util.List<NodeProblem> SignaturePartUtil.validateSignaturePartBean(org.mockcentral.server.SignaturePartBean bean, FixtureNode fixtureNode)
          Performs validation for the supplied SignaturePartBean, returning a list of any NodeProblem objects that were generated during the process.
 

Uses of NodeProblem in org.mockcentral.editor.nodes.fixture
 

Methods in org.mockcentral.editor.nodes.fixture that return NodeProblem
 NodeProblem FixtureModel.getNodeProblem(java.lang.Object o)
           
 

Uses of NodeProblem in org.mockcentral.editor.nodes.problem
 

Fields in org.mockcentral.editor.nodes.problem with type parameters of type NodeProblem
protected  java.util.List<NodeProblem> NodeProblemManager.newProblems
           
protected  java.util.List<NodeProblem> NodeProblemManager.storedProblems
           
 

Methods in org.mockcentral.editor.nodes.problem that return NodeProblem
 NodeProblem NodeProblemManager.getIndexedNodeProblem(java.lang.String elementName, int elementIndex)
          Returns the NodeProblem associated with the given element name, at the given index, if any.
 NodeProblem INodeProblemParticipant.getNodeProblem(java.lang.Object o)
          Returns the stored NodeProblem associated with the supplied Object, if any.
static NodeProblem NodeProblemManager.getSeverestNodeProblem(MockCentralNode node)
          Returns the severest NodeProblem for the supplied MockCentralNode, if any.
 

Methods in org.mockcentral.editor.nodes.problem that return types with arguments of type NodeProblem
 java.util.List<NodeProblem> NodeProblemManager.getNodeProblems()
          Returns the stored list of problems.
 

Methods in org.mockcentral.editor.nodes.problem with parameters of type NodeProblem
 void NodeProblemManager.addNewProblem(NodeProblem nodeProblem)
          Adds a new entry to the list storing problems encountered during validation of the MockCentralNode data.
protected  void NodeProblemManager.doUpdate(NodeProblem problem, boolean add)
          Adds or removes a NodeProblem from the current list and propagates the changed upward through all enclosing instances.
static java.lang.String NodeProblemManager.getSeverityLabel(NodeProblem nodeProblem)
          Returns a String describing the severity of the supplied NodeProblem.
 

Method parameters in org.mockcentral.editor.nodes.problem with type arguments of type NodeProblem
 void INodeProblemListener.updateNodeProblems(java.util.List<NodeProblem> nodeProblems)
          Notification of updated node problems.
 

Uses of NodeProblem in org.mockcentral.editor.outline
 

Methods in org.mockcentral.editor.outline that return types with arguments of type NodeProblem
 java.util.List<NodeProblem> IMockCentralEditorOutline.collectNodeProblems()
          Returns a list containing all current NodeProblem instances.
 

Uses of NodeProblem in org.mockcentral.editor.viewers
 

Methods in org.mockcentral.editor.viewers that return types with arguments of type NodeProblem
 java.util.List<NodeProblem> MockCentralTreeModel.collectNodeProblems()
          Returns a list of all current NodeProblem instances in the model.