當前位置: 首頁>>代碼示例>>Java>>正文


Java Locator.getSystemId方法代碼示例

本文整理匯總了Java中org.xml.sax.Locator.getSystemId方法的典型用法代碼示例。如果您正苦於以下問題:Java Locator.getSystemId方法的具體用法?Java Locator.getSystemId怎麽用?Java Locator.getSystemId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.xml.sax.Locator的用法示例。


在下文中一共展示了Locator.getSystemId方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: getLocationString

import org.xml.sax.Locator; //導入方法依賴的package包/類
private String getLocationString(Locator l) {
    return "[" + l.getSystemId() + "#" + l.getLineNumber() + "]";
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:4,代碼來源:DefaultAuthenticator.java

示例6: getSystemId

import org.xml.sax.Locator; //導入方法依賴的package包/類
public String getSystemId() {
    Locator l = findLocator();
    if(l!=null)     return l.getSystemId();
    return          null;
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:6,代碼來源:DOMForestScanner.java

示例7: 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

示例8: setDocumentLocator

import org.xml.sax.Locator; //導入方法依賴的package包/類
/**
 * Receive a Locator object for document events.
 *
 * <p>By default, do nothing.  Application writers may override this
 * method in a subclass if they wish to store the locator for use
 * with other document events.</p>
 *
 * @param locator A locator for all SAX document events.
 * @see ContentHandler#setDocumentLocator
 * @see Locator
 */
public void setDocumentLocator(Locator locator)
{
  m_locator = locator;
  m_systemId = locator.getSystemId();
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:17,代碼來源:SAX2DTM.java


注:本文中的org.xml.sax.Locator.getSystemId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。