DeferredDocumentImpl.getNodeValue
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using org.apache.xerces.dom.DeferredDocumentImpl.getNodeValue (Showing top 6 results out of 315)

origin: com.rackspace.apache/xerces2-xsd11

/**
 * Returns the value of the given node.
 */
public String getNodeValue(int nodeIndex) {
  return getNodeValue(nodeIndex, true);
}
 
origin: com.rackspace.apache/xerces2-xsd11

/** 
 * Synchronize the entity data. This is special because of the way
 * that the "fast" version stores the information.
 */
protected void synchronizeData() {
  // no need to sychronize again
  needsSyncData(false);
  // get the node data
  DeferredDocumentImpl ownerDocument =
    (DeferredDocumentImpl)this.ownerDocument;
  name = ownerDocument.getNodeName(fNodeIndex);
  baseURI = ownerDocument.getNodeValue(fNodeIndex);
  
} // synchronizeData()
origin: com.rackspace.apache/xerces2-xsd11

/** Synchronizes the data (name and value) for fast nodes. */
protected void synchronizeData() {
  // no need to sync in the future
  needsSyncData(false);
  // fluff data
  DeferredDocumentImpl ownerDocument =
    (DeferredDocumentImpl)this.ownerDocument;
  name = ownerDocument.getNodeName(fNodeIndex);
  // public and system ids
  publicID = ownerDocument.getNodeValue(fNodeIndex);
  systemID = ownerDocument.getNodeURI(fNodeIndex);
  int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
  internalSubset = ownerDocument.getNodeValue(extraDataIndex);
} // synchronizeData()
origin: com.rackspace.apache/xerces2-xsd11

/**
 * Synchronize the entity data. This is special because of the way
 * that the "fast" version stores the information.
 */
protected void synchronizeData() {
  // no need to sychronize again
  needsSyncData(false);
  // get the node data
  DeferredDocumentImpl ownerDocument =
    (DeferredDocumentImpl)this.ownerDocument;
  name = ownerDocument.getNodeName(fNodeIndex);
  // get the entity data
  publicId    = ownerDocument.getNodeValue(fNodeIndex);
  systemId    = ownerDocument.getNodeURI(fNodeIndex);
  int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
  ownerDocument.getNodeType(extraDataIndex);
  notationName = ownerDocument.getNodeName(extraDataIndex);
  // encoding and version DOM L3
  version     = ownerDocument.getNodeValue(extraDataIndex);
  encoding    = ownerDocument.getNodeURI(extraDataIndex);
  // baseURI, actualEncoding DOM L3
  int extraIndex2 = ownerDocument.getNodeExtra(extraDataIndex);
  baseURI = ownerDocument.getNodeName(extraIndex2);
  inputEncoding = ownerDocument.getNodeValue(extraIndex2);
} // synchronizeData()
origin: com.rackspace.apache/xerces2-xsd11

/**
 * Synchronizes the data. This is special because of the way
 * that the "fast" notation stores its information internally.
 */
protected void synchronizeData() {
  // no need to synchronize again
  needsSyncData(false);
  // name
  DeferredDocumentImpl ownerDocument =
    (DeferredDocumentImpl)this.ownerDocument();
  name = ownerDocument.getNodeName(fNodeIndex);
  ownerDocument.getNodeType(fNodeIndex);
  // public and system ids
  publicId = ownerDocument.getNodeValue(fNodeIndex);
  systemId = ownerDocument.getNodeURI(fNodeIndex);
  int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
  ownerDocument.getNodeType(extraDataIndex);
  baseURI = ownerDocument.getNodeName(extraDataIndex);
} // synchronizeData()
origin: com.rackspace.apache/xerces2-xsd11

System.out.print(getChunkValue(fNodeName, chunk, index));
System.out.print('\t');
System.out.print(getNodeValue(chunk, index));
System.out.print('\t');
System.out.print(getChunkValue(fNodeURI, chunk, index));
org.apache.xerces.domDeferredDocumentImplgetNodeValue

Javadoc

Returns the value of the given node.

Popular methods of DeferredDocumentImpl

  • getNodeExtra
    Returns the extra info of the given node.
  • getNodeName
    Returns the name of the given node.
  • getNodeType
    Returns the type of the given node.
  • getPrevSibling
    Returns the prev sibling of the given node.
  • <init>
    Experimental constructor.
  • appendChild
    Appends a child to the specified parent in the table.
  • binarySearch
    Performs a binary search for a target value in an array of values. The array of values must be in as
  • clearChunkIndex
    Clears the specified value in the given data at the chunk and index. Note that this method will clea
  • clearChunkValue
  • cloneNode
    Creates a clone of the specified node.
  • createChunk
  • createDeferredAttribute
    Creates an attribute in the table.
  • createChunk,
  • createDeferredAttribute,
  • createDeferredCDATASection,
  • createDeferredComment,
  • createDeferredDocument,
  • createDeferredDocumentType,
  • createDeferredElement,
  • createDeferredElementDefinition,
  • createDeferredEntity,
  • createDeferredEntityReference

Popular in Java

  • Start an intent from android
  • onRequestPermissionsResult (Fragment)
  • setContentView (Activity)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Table (org.hibernate.mapping)
    A relational table

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)