Examples of DebugDecodeContext


Examples of com.fineqt.fpb.lib.meta.context.DebugDecodeContext

            throw e;
        }
    } 
  private static void logDecodeException(DecodeException e) {
    if (IFpbSystem.INSTANCE.isDebug() && log.isDebugEnabled()) {
      DebugDecodeContext dcxt = (DebugDecodeContext)e.getDecodeContext();
      for (int i = 0; i < dcxt.getNotChainedResults().size(); i++) {
        log.debug("NotChainedResults["+i+"]:"+dcxt.getNotChainedResults().get(i));
      }
      for (int i = 0; i < dcxt.getAllResults().size(); i++) {
        log.debug("AllResults["+i+"]:"+dcxt.getAllResults().get(i));
      }
      log.debug("DebugDecodeContext:"+dcxt);
    }
  }
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.