|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of XMLParserException in org.stanwood.media.actions |
---|
Methods in org.stanwood.media.actions that throw XMLParserException | |
---|---|
void |
SeenDatabase.read(IProgressMonitor progress)
Used to read the database from disk |
Uses of XMLParserException in org.stanwood.media.info |
---|
Methods in org.stanwood.media.info that throw XMLParserException | |
---|---|
java.lang.String |
VideoInfoParser.getAspectRatio()
Used to get the aspect ratio or null if it can't be found |
java.lang.Long |
VideoInfoParser.getAudioBitRate()
Used to get the audio bit rate (Kbs) |
java.lang.String |
VideoInfoParser.getAudioFormatProfile()
Used to get the audio format profile |
java.lang.Integer |
VideoInfoParser.getDuration()
Used to get the video duration in milliseconds or null if it can't be found |
java.lang.Float |
VideoInfoParser.getFrameRate()
Used to get the frames per second or null if it can't be found |
java.lang.Integer |
VideoInfoParser.getHeight()
Used to get the height in pixels or null if it can be found |
boolean |
VideoInfoParser.getInterlaced()
Used to find out if the scan type is interlaced |
java.lang.Integer |
VideoInfoParser.getWidth()
Used to get the width in pixels or null if it can be found |
Constructors in org.stanwood.media.info that throw XMLParserException | |
---|---|
VideoFileInfo(java.io.File mediaFile,
VideoInfoParser parser)
The constructor |
Uses of XMLParserException in org.stanwood.media.source |
---|
Methods in org.stanwood.media.source that throw XMLParserException | |
---|---|
protected void |
TagChimpSource.parseCertification(Film film,
org.w3c.dom.Document doc)
|
protected void |
TagChimpSource.parseChapters(Film film,
org.w3c.dom.Document doc)
|
Uses of XMLParserException in org.stanwood.media.source.xbmc |
---|
Methods in org.stanwood.media.source.xbmc that throw XMLParserException | |
---|---|
java.lang.String |
XBMCExtension.executeXBMCFunction(org.w3c.dom.Element functionNode,
java.util.Map<java.lang.Integer,java.lang.String> params)
Used to execute a XBMC function |
java.lang.String |
XBMCLibrary.executeXBMCScraperFunction(java.lang.String functionName,
java.util.Map<java.lang.Integer,java.lang.String> params)
Used to execute a XBMC function |
java.lang.String |
XBMCScraper.executeXBMCScraperFunction(java.lang.String functionName,
java.util.Map<java.lang.Integer,java.lang.String> params)
Used to execute a scraper function |
abstract java.lang.String |
XBMCExtension.executeXBMCScraperFunction(java.lang.String functionName,
java.util.Map<java.lang.Integer,java.lang.String> params)
Used to execute a XBMC function |
protected void |
XBMCSource.parseCertification(IVideoCertification video,
org.w3c.dom.Document doc)
|
Uses of XMLParserException in org.stanwood.media.source.xbmc.updater |
---|
Methods in org.stanwood.media.source.xbmc.updater that throw XMLParserException | |
---|---|
protected int |
XBMCWebUpdater.updatePlugins(IConsole console,
java.io.File newAddon,
java.util.Set<java.lang.String> plugins)
|
Uses of XMLParserException in org.stanwood.media.store.xmlstore |
---|
Methods in org.stanwood.media.store.xmlstore that throw XMLParserException | |
---|---|
protected void |
XMLStore2.readCertifications(IVideoCertification video,
org.w3c.dom.Node videoNode)
|
protected void |
XMLStore2.readDirectors(IVideo video,
org.w3c.dom.Node videoNode)
|
protected void |
XMLStore2.readExtraParams(IVideoExtra video,
org.w3c.dom.Node videoNode)
|
protected void |
XMLStore2.readGenres(IVideoGenre video,
org.w3c.dom.Node videoNode)
|
protected void |
XMLStore2.readWriters(IVideo video,
org.w3c.dom.Node videoNode)
|
Uses of XMLParserException in org.stanwood.media.xml |
---|
Subclasses of XMLParserException in org.stanwood.media.xml | |
---|---|
class |
XMLParserNotFoundException
This is thrown if a attempt was made to get a XML node that does not exist. |
Methods in org.stanwood.media.xml that throw XMLParserException | |
---|---|
static java.lang.String |
XMLParser.domToStr(org.w3c.dom.Document document)
Used to convert a DOM document to a string |
protected float |
XMLParser.getFloatFromXML(org.w3c.dom.Node parent,
java.lang.String path)
Used to read a float from the XML |
protected java.lang.Integer |
XMLParser.getIntegerFromXML(org.w3c.dom.Node parent,
java.lang.String path)
Used to read a integer from the XML |
protected java.lang.Long |
XMLParser.getLongFromXML(org.w3c.dom.Node parent,
java.lang.String path)
Used to read a long from the XML |
static javax.xml.validation.Schema |
XMLParser.getSchema(java.lang.String name)
Used to create a Schema that can be used to validate XML documents |
protected java.lang.String |
XMLParser.getStringFromXML(org.w3c.dom.Node parent,
java.lang.String path)
Used to read a string from the XML |
protected java.lang.String |
XMLParser.getStringFromXMLOrNull(org.w3c.dom.Node parent,
java.lang.String path)
Used to read a string from the XML, if it can't be found then return null |
protected java.net.URL |
XMLParser.getURLFromXML(org.w3c.dom.Node parent,
java.lang.String path)
Used to read a URL from the XML |
protected java.net.URL |
XMLParser.getURLFromXMLOrNull(org.w3c.dom.Node parent,
java.lang.String path)
Used to read a URL; from the XML, if it can't be found then return null |
static boolean |
XMLParser.hasNode(org.w3c.dom.Document document,
java.lang.String path)
Used to see if a XML document contains a node |
static org.w3c.dom.Document |
XMLParser.parse(java.io.File file,
java.lang.String schemaName)
Used to convert a XML file to a XML document. |
static org.w3c.dom.Document |
XMLParser.parse(java.io.InputStream is,
java.lang.String schemaName)
Used to convert a XML InputStream to a XML document. |
static org.w3c.dom.Document |
XMLParser.parse(java.lang.String contents,
java.lang.String schemaName)
Used to convert a XML String to a XML document. |
static IterableNodeList |
XMLParser.selectNodeList(org.w3c.dom.Node contextNode,
java.lang.String path)
Used to get a list of XML nodes using a XPath path |
static org.w3c.dom.Node |
XMLParser.selectSingleNode(org.w3c.dom.Node contextNode,
java.lang.String path)
Used to return a single XML node using a XPath path |
static org.w3c.dom.Document |
XMLParser.strToDom(java.io.File file)
Used to convert a XML file to a DOM document |
static org.w3c.dom.Document |
XMLParser.strToDom(java.lang.String str)
Used to convert a XML string to a DOM document |
static org.w3c.dom.Document |
XMLParser.strToDom(java.lang.String str,
java.lang.String schemaName)
Used to convert a XML string to a DOM document |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |