uk.co.real_logic.sbe.xml.XmlSchemaParser.formatLocationInfo()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(4.1k)|赞(0)|评价(0)|浏览(58)

本文整理了Java中uk.co.real_logic.sbe.xml.XmlSchemaParser.formatLocationInfo()方法的一些代码示例,展示了XmlSchemaParser.formatLocationInfo()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlSchemaParser.formatLocationInfo()方法的具体详情如下:
包路径:uk.co.real_logic.sbe.xml.XmlSchemaParser
类名称:XmlSchemaParser
方法名:formatLocationInfo

XmlSchemaParser.formatLocationInfo介绍

暂无

代码示例

代码示例来源:origin: real-logic/simple-binary-encoding

/**
 * Handle an error condition as consequence of parsing.
 *
 * @param node that is the context of the warning.
 * @param msg  associated with the error.
 */
public static void handleError(final Node node, final String msg)
{
  final ErrorHandler handler = (ErrorHandler)node.getOwnerDocument().getUserData(ERROR_HANDLER_KEY);
  if (handler == null)
  {
    throw new IllegalStateException("ERROR: " + formatLocationInfo(node) + msg);
  }
  else
  {
    handler.error(formatLocationInfo(node) + msg);
  }
}

代码示例来源:origin: real-logic/simple-binary-encoding

/**
 * Handle a warning condition as a consequence of parsing.
 *
 * @param node as the context for the warning.
 * @param msg  associated with the warning.
 */
public static void handleWarning(final Node node, final String msg)
{
  final ErrorHandler handler = (ErrorHandler)node.getOwnerDocument().getUserData(ERROR_HANDLER_KEY);
  if (handler == null)
  {
    throw new IllegalStateException("WARNING: " + formatLocationInfo(node) + msg);
  }
  else
  {
    handler.warning(formatLocationInfo(node) + msg);
  }
}

代码示例来源:origin: uk.co.real-logic/sbe-tool

/**
 * Handle an error condition as consequence of parsing.
 *
 * @param node that is the context of the warning.
 * @param msg  associated with the error.
 */
public static void handleError(final Node node, final String msg)
{
  final ErrorHandler handler = (ErrorHandler)node.getOwnerDocument().getUserData(ERROR_HANDLER_KEY);
  if (handler == null)
  {
    throw new IllegalStateException("ERROR: " + formatLocationInfo(node) + msg);
  }
  else
  {
    handler.error(formatLocationInfo(node) + msg);
  }
}

代码示例来源:origin: uk.co.real-logic/sbe-all

/**
 * Handle an error condition as consequence of parsing.
 *
 * @param node that is the context of the warning.
 * @param msg  associated with the error.
 */
public static void handleError(final Node node, final String msg)
{
  final ErrorHandler handler = (ErrorHandler)node.getOwnerDocument().getUserData(ERROR_HANDLER_KEY);
  if (handler == null)
  {
    throw new IllegalStateException("ERROR: " + formatLocationInfo(node) + msg);
  }
  else
  {
    handler.error(formatLocationInfo(node) + msg);
  }
}

代码示例来源:origin: uk.co.real-logic/sbe-all

/**
 * Handle a warning condition as a consequence of parsing.
 *
 * @param node as the context for the warning.
 * @param msg  associated with the warning.
 */
public static void handleWarning(final Node node, final String msg)
{
  final ErrorHandler handler = (ErrorHandler)node.getOwnerDocument().getUserData(ERROR_HANDLER_KEY);
  if (handler == null)
  {
    throw new IllegalStateException("WARNING: " + formatLocationInfo(node) + msg);
  }
  else
  {
    handler.warning(formatLocationInfo(node) + msg);
  }
}

代码示例来源:origin: uk.co.real-logic/sbe-tool

/**
 * Handle a warning condition as a consequence of parsing.
 *
 * @param node as the context for the warning.
 * @param msg  associated with the warning.
 */
public static void handleWarning(final Node node, final String msg)
{
  final ErrorHandler handler = (ErrorHandler)node.getOwnerDocument().getUserData(ERROR_HANDLER_KEY);
  if (handler == null)
  {
    throw new IllegalStateException("WARNING: " + formatLocationInfo(node) + msg);
  }
  else
  {
    handler.warning(formatLocationInfo(node) + msg);
  }
}

代码示例来源:origin: uk.co.real-logic/sbe

/**
 * Handle an error condition as consequence of parsing.
 *
 * @param node that is the context of the warning.
 * @param msg associated with the error.
 */
public static void handleError(final Node node, final String msg)
{
  final ErrorHandler handler = (ErrorHandler)node.getOwnerDocument().getUserData(ERROR_HANDLER_KEY);
  if (handler == null)
  {
    throw new IllegalStateException("ERROR: " + formatLocationInfo(node) + msg);
  }
  else
  {
    handler.error(formatLocationInfo(node) + msg);
  }
}

代码示例来源:origin: uk.co.real-logic/sbe

/**
 * Handle a warning condition as a consequence of parsing.
 *
 * @param node as the context for the warning.
 * @param msg associated with the warning.
 */
public static void handleWarning(final Node node, final String msg)
{
  final ErrorHandler handler = (ErrorHandler)node.getOwnerDocument().getUserData(ERROR_HANDLER_KEY);
  if (handler == null)
  {
    throw new IllegalStateException("WARNING: " + formatLocationInfo(node) + msg);
  }
  else
  {
    handler.warning(formatLocationInfo(node) + msg);
  }
}

相关文章