Examples of ProblemImpl


Examples of org.apache.tuscany.sca.monitor.impl.ProblemImpl

     * @param message
     * @param model
     */
    protected void error(String message, Object model, Object... messageParameters) {
        if (monitor != null) {
            Problem problem = new ProblemImpl(this.getClass().getName(), "assembly-xml-validation-messages", Severity.ERROR, model, message, (Object[])messageParameters);
            monitor.problem(problem);
        }
    }   
View Full Code Here

Examples of org.apache.tuscany.sca.monitor.impl.ProblemImpl

     * @param message
     * @param model
     */
     private void error(String message, Object model, Object... messageParameters) {
       if (monitor != null) {
          Problem problem = new ProblemImpl(this.getClass().getName(), "contribution-java-validation-messages", Severity.ERROR, model, message, (Object[])messageParameters);
          monitor.problem(problem);
       }
     }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.