| java.lang.Object org.jibx.binding.model.ValidationProblem
ValidationProblem | public class ValidationProblem (Code) | | Problem reported by model validation. Provides the details for a specific
problem item.
author: Dennis M. Sosnoski version: 1.0 |
ERROR_LEVEL | final public static int ERROR_LEVEL(Code) | | |
FATAL_LEVEL | final public static int FATAL_LEVEL(Code) | | |
WARNING_LEVEL | final public static int WARNING_LEVEL(Code) | | |
ValidationProblem | ValidationProblem(int level, String msg, Object obj)(Code) | | Full constructor.
Parameters: level - severity level of problem Parameters: msg - problem description Parameters: obj - source object for validation error (may be null if not specific to a particular component) |
ValidationProblem | ValidationProblem(String msg, Object obj)(Code) | | Constructor using default (error) severity level.
Parameters: msg - problem description Parameters: obj - source object for validation error |
componentDescription | public static String componentDescription(Object obj)(Code) | | Create description text for a component of a binding definition.
Parameters: obj - binding definition component description |
getComponent | public Object getComponent()(Code) | | Get the main binding definition item for the problem.
element or attribute at root of problem |
getDescription | public String getDescription()(Code) | | Get problem description.
problem description |
getSeverity | public int getSeverity()(Code) | | Get problem severity level.
severity level for problem |
|
|