当前位置: 首页>>代码示例>>Java>>正文


Java Locator.getLineNumber方法代码示例

本文整理汇总了Java中org.xml.sax.Locator.getLineNumber方法的典型用法代码示例。如果您正苦于以下问题:Java Locator.getLineNumber方法的具体用法?Java Locator.getLineNumber怎么用?Java Locator.getLineNumber使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.xml.sax.Locator的用法示例。


在下文中一共展示了Locator.getLineNumber方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getErrorMessage

import org.xml.sax.Locator; //导入方法依赖的package包/类
/**
 * Creates an error message that will include line number,
 * column number, and other information from the parsing context.
 * @param context the parsing context
 * @param message a base message
 */
static public String getErrorMessage(
  ParseContext context,
  String       message)
{
  int line;
  int column;
  String systemId;

  Locator locator = context.getLocator();
  if (locator == null)
  {
    line   = -1;
    column = -1;
    systemId = null;
  }
  else
  {
    line = locator.getLineNumber();
    column = locator.getColumnNumber();
    systemId = locator.getSystemId();
  }

  return _getErrorMessage(message, line, column, systemId);
}
 
开发者ID:apache,项目名称:myfaces-trinidad,代码行数:31,代码来源:ParseErrorUtils.java

示例2: SchemaTreeNode

import org.xml.sax.Locator; //导入方法依赖的package包/类
/**
 * Simple constructor.
 *
 * @param artifactName Artifact name.
 * @param locator      Artifact locator.
 */
public SchemaTreeNode(String artifactName, Locator locator) {
    this.artifactName = artifactName;
    if (locator == null) {
        this.fileName = null;
    }
    else {
        String filename = locator.getSystemId();
        filename = filename.replaceAll("\u002520", " ");
        // strip leading protocol
        if (filename.startsWith("file:/")) {
            filename = filename.substring(6);
        }

        this.fileName = filename;
        this.lineNumber = locator.getLineNumber() - 1;
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:SchemaTreeTraverser.java

示例3: printLocator

import org.xml.sax.Locator; //导入方法依赖的package包/类
private String printLocator(Locator loc) {
    if( loc==null )     return "";

    int line = loc.getLineNumber();
    String sysId = loc.getSystemId();
    if(sysId==null)     sysId = Messages.format(Messages.MSG_UNKNOWN_FILE);

    if( line!=-1 )
        return Messages.format( Messages.MSG_LINE_X_OF_Y,
                Integer.toString(line), sysId );
    else
        return sysId;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:CollisionInfo.java

示例4: addSchemaFragmentJavadoc

import org.xml.sax.Locator; //导入方法依赖的package包/类
/**
 * Copies a schema fragment into the javadoc of the generated class.
 */
private void addSchemaFragmentJavadoc( CClassInfo bean, XSComponent sc ) {

    // first, pick it up from <documentation> if any.
    String doc = builder.getBindInfo(sc).getDocumentation();
    if(doc!=null)
        append(bean, doc);

    // then the description of where this component came from
    Locator loc = sc.getLocator();
    String fileName = null;
    if(loc!=null) {
        fileName = loc.getPublicId();
        if(fileName==null)
            fileName = loc.getSystemId();
    }
    if(fileName==null)  fileName="";

    String lineNumber=Messages.format( Messages.JAVADOC_LINE_UNKNOWN);
    if(loc!=null && loc.getLineNumber()!=-1)
        lineNumber = String.valueOf(loc.getLineNumber());

    String componentName = sc.apply( new ComponentNameFunction() );
    String jdoc = Messages.format( Messages.JAVADOC_HEADING, componentName, fileName, lineNumber );
    append(bean,jdoc);

    // then schema fragment
    StringWriter out = new StringWriter();
    out.write("<pre>\n");
    SchemaWriter sw = new SchemaWriter(new JavadocEscapeWriter(out));
    sc.visit(sw);
    out.write("</pre>");
    append(bean,out.toString());
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:37,代码来源:ClassSelector.java

示例5: equals

import org.xml.sax.Locator; //导入方法依赖的package包/类
/**
 * Compares if two {@link Locator}s point to the exact same position.
 */
public static boolean equals(Locator lhs, Locator rhs) {
    return lhs.getLineNumber()==rhs.getLineNumber()
    && lhs.getColumnNumber()==rhs.getColumnNumber()
    && equals(lhs.getSystemId(),rhs.getSystemId())
    && equals(lhs.getPublicId(),rhs.getPublicId());
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:Util.java

示例6: getLocationString

import org.xml.sax.Locator; //导入方法依赖的package包/类
private String getLocationString(Locator l) {
    return "[" + l.getSystemId() + "#" + l.getLineNumber() + "]";
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:DefaultAuthenticator.java

示例7: getLineNumber

import org.xml.sax.Locator; //导入方法依赖的package包/类
public int getLineNumber() {
    Locator l = findLocator();
    if(l!=null)     return l.getLineNumber();
    return          -1;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:6,代码来源:DOMForestScanner.java

示例8: SAXLocation

import org.xml.sax.Locator; //导入方法依赖的package包/类
private SAXLocation(Locator locator) {
        lineNumber = locator.getLineNumber();
        columnNumber = locator.getColumnNumber();
        publicId = locator.getPublicId();
        systemId = locator.getSystemId();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:SAX2StAXBaseWriter.java

示例9: ValidationEventLocatorImpl

import org.xml.sax.Locator; //导入方法依赖的package包/类
/**
 * Constructs an object from an org.xml.sax.Locator.
 *
 * The object's ColumnNumber, LineNumber, and URL become available from the
 * values returned by the locator's getColumnNumber(), getLineNumber(), and
 * getSystemId() methods respectively. Node, Object, and Offset are not
 * available.
 *
 * @param loc the SAX Locator object that will be used to populate this
 * event locator.
 * @throws IllegalArgumentException if the Locator is null
 */
public ValidationEventLocatorImpl( Locator loc ) {
    if( loc == null ) {
        throw new IllegalArgumentException(
            Messages.format( Messages.MUST_NOT_BE_NULL, "loc" ) );
    }

    this.url = toURL(loc.getSystemId());
    this.columnNumber = loc.getColumnNumber();
    this.lineNumber = loc.getLineNumber();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:ValidationEventLocatorImpl.java


注:本文中的org.xml.sax.Locator.getLineNumber方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。