Uses of Class
net.sourceforge.xbrlcomposer.DTSException

Uses of DTSException in net.sourceforge.xbrlcomposer
 

Methods in net.sourceforge.xbrlcomposer that throw DTSException
static void DTS.main(java.lang.String[] argv)
          Class entry point for execution.
 java.util.HashMap DTS.getIndex()
          Get the index map for the DTSImpl
 org.xml.sax.EntityResolver DTS.getEntityResolver()
          Get the resolver for the DTSImpl
 void DTS.setEntityResolver(org.xml.sax.EntityResolver resolver)
          Set the resolver for the DTSImpl
 void DTS.setIndexedFragment(java.lang.String key, org.w3c.dom.Element fragment)
          Set a fragment in the DTSImpl Note that this does not check that the key is unique or that the fragment is part of the DTSImpl XML DOM object.
 org.w3c.dom.Element DTS.getIndexedFragment(java.lang.String key)
          Get an XML fragment in the DTSImpl given its index
 org.w3c.dom.Document DTS.getDocument()
          Get the document DOM object representing the DTSImpl as an XML object
 java.net.URI DTS.getTargetNamespaceURI()
          Get the targetNamespaceURI for the schema being processed
 void DTS.setTargetNamespaceURI(java.net.URI targetNamespaceURI)
          Set the targetNamespaceURI for the schema being processed
 void DTS.setParsingXBRLInstance(boolean parsing)
          Set the boolean indicating that an XBRL instance is being parsed
 boolean DTS.isParsingXBRLInstance()
          Get the value of the boolean indicating that an XBRL instance is being parsed
 org.w3c.dom.Element DTS.getRoot()
          Get the root element
 void DTS.getRoot(org.w3c.dom.Element root)
          Set the root element
 void DTS.setStartingPoints(java.util.List startingDocuments)
          Set the starting points for DTSImpl discovery using a linked list
 void DTS.setStartingPoints(java.lang.String[] startingDocuments)
          Set the starting points for DTSImpl discovery using a linked list
 void DTS.loadDTSDocuments()
          Loads the documents identified as part of the DTSImpl.
 void DTS.augmentDTSDocuments(java.lang.String[] newStartingURLs)
          Augment a DTSImpl with additional documents
 void DTS.augmentDTSDocuments(java.util.List newStartingURLs)
          Augment a DTSImpl with additional documents
 void DTS.addFileToDTS()
          Add a file element to the DTSImpl to contain a new file in the DTSImpl.
 void DTS.finishFileInDTS()
          Finish processing a file in the DTSImpl
 void DTS.processExtendedLink()
          Process the arcs in an extended link.
 void DTS.finishedWithAnElement()
          Step up to element's parent having finished with the element.
 void DTS.handleElementStart(java.lang.String namespaceURI, java.lang.String lName, java.lang.String qName, org.xml.sax.Attributes attrs)
          Called by the SAX content handler Identify elements requiring specific treatment and handle appropriately, otherwise just insert the element at the current location in the composite document.
 void DTS.handleElementEnd(java.lang.String namespaceURI, java.lang.String sName, java.lang.String qName)
          Called by the SAX content handler to wrap up the processing of elements.
 void DTS.appendText(java.lang.String text)
          Append a text node to the composite document
 void DTS.appendProcessingInstruction(java.lang.String target, java.lang.String data)
          Append a processing instruction to the composite document
 void DTS.appendComment(java.lang.String data)
          Append a comment to the composite document.
 void DTS.saveToFile(java.lang.String filename)
          Save the DTSImpl DOM object to an XML file.
 void DTS.saveToFile(java.io.File file)
          Save the DTSImpl DOM object to an XML file.
 void DTS.saveToFile(java.io.OutputStream outputStream)
          Save the DTSImpl DOM object to an XML file.
 boolean DTS.selectBoolean(java.lang.String xPath, org.w3c.dom.Element element)
          Evaluate an XPath expression against an element in the DTSImpl DOM
 java.lang.String DTS.selectString(java.lang.String xPath, org.w3c.dom.Element element)
          Evaluate an XPath expression against an element in the DTSImpl DOM
 double DTS.selectNumber(java.lang.String xPath, org.w3c.dom.Element element)
          Evaluate an XPath expression against an element in the DTSImpl DOM
 org.w3c.dom.Node DTS.selectNode(java.lang.String xPath, org.w3c.dom.Element element)
          Evaluate an XPath expression against an element in the DTSImpl DOM
 org.w3c.dom.xpath.XPathResult DTS.selectNodes(java.lang.String xPath, org.w3c.dom.Element element)
          Evaluate an XPath expression against an element in the DTSImpl DOM
 org.w3c.dom.xpath.XPathResult DTS.selectNodesSnapshot(java.lang.String xPath, org.w3c.dom.Element element)
          Evaluate an XPath expression against an element in the DTSImpl DOM
 void DTS.decompose(java.io.File cacheRoot)
          Decomposes the DTSImpl into the original files in a taxonomy cache.
 

Constructors in net.sourceforge.xbrlcomposer that throw DTSException
DTS()
          DTSImpl constructor with no inputs.
DTS(java.lang.String[] startingURLs)
          DTSImpl constructor taking an array of string URL's of starting point documents.
DTS(java.io.File file)
          DTSImpl constructor taking the URL of a serialised DTSImpl as an input point documents.