Spec-Zone .ru
спецификации, руководства, описания, API

JavaFX: Bringing Rich Experiences To All the Screens Of Your Life

Profile: desktop, common

Overview

An element which represents an individual entry, acting as a container for metadata and data associated with the entry.

Profile: common

Variable Summary

access name type Can Read Can Init Can Write Default Value description
public authors Person[]

Sequence of Person containing the authors of this feed.

public categories Category[]

Sequences of Category containing the categories of this feed.

public content Content

Content of the entry.

public contributors Person[]

Sequence of Person containing the contributors of this feed.

public-init feed Feed

The feed associated with this entry.

public id Id

A universally unique and a permanent identifier for this entry or feed.

public links Link[]

Sequence of Link describing a reference from this entry or feed to a Web resource.

public logo Id

An image that provides visual identification for this feed.

public published Date

A Date indicating an instant in time when this entry of feed was published.

public rights Content

Information about rights held in and over this entry or feed.

public source Feed

The source of this entry.

public subtitle Content

The subtitle for this feed.

public summary Content

A short summary, abstract, or excerpt of an entry.

public title Content

The title for this entry or feed.

public updated Date

A Date indicating an instant in time when this entry of feed was updated.

Inherited Variables

javafx.data.feed.atom.Atom

access name type Can Read Can Init Can Write Default Value description
public base String

Base URI for the Atom feed.

protected factory Factory subclass subclass subclass

The factory for creating new Atom elements.

public lang String

The language for the Atom feed.

protected task FeedTask subclass subclass subclass

The Task that is currently parsing the feed.

javafx.data.feed.Base

access name type Can Read Can Init Can Write Default Value description
public namespaces Pair[]

The namespace definitions in effect for this element.

The namespace definitions in effect for this element. The name attribute of the Pair contains the namespace prefix and the value attribute contains the namespace URI.

 
public parent Base

Points to the parent, or enclosing element.

Points to the parent, or enclosing element. Will be null if there is no parent.

 

Inherited Functions

javafx.data.feed.atom.Atom

public impl_parse(parser: PullParser) : Void
Parameters
parser
 
protected toXML() : java.lang.String
Returns
String
 
protected tryParseDate(text: java.lang.String) : DateTime
Parameters
text
Returns
DateTime
 

javafx.data.feed.Base

protected dispatchForeignElement(parser: PullParser, task: FeedTask, refNamespace: java.lang.String) : Void

Determine if the current event is a foreign event and report it to the registered callback, if any.

Determine if the current event is a foreign event and report it to the registered callback, if any.

Parameters
parser
task
refNamespace
 
protected abstract fromXML(parser: PullParser) : Void

Subclasses override this function to parse themselves from the XML stream events generated by the parser.

Subclasses override this function to parse themselves from the XML stream events generated by the parser.

Parameters
parser
 
protected map(qname: QName) : java.lang.String

Map the specified QName according to namespace definitions currently in effect.

Map the specified QName according to namespace definitions currently in effect.
Returns a representation of the specified QName taking current namespace definitions into account, using the currently-mapped prefix, if one is currently mapped to the QName's namespace uri. Also recursively traverse up the hierarchy to find a match.

Parameters
qname
Returns
String
a String representation of the qname with its prefix adjusted to match the namespace definitions currently in effect.
 
protected parseNamespaces(parser: PullParser) : Void

Parse namespace definitions for this element, if any.

Parse namespace definitions for this element, if any.

Parameters
parser
 
protected stripCDATA(s: java.lang.String) : java.lang.String

Remove CDATA start and end markers from content.

Remove CDATA start and end markers from content.

Parameters
s
Returns
String
 
protected toXML() : java.lang.String

Generate an XML representation of the element.

Generate an XML representation of the element. The Base class generates an XML representation of the namespaces in effect. Overriding classes are expected to override this function and add their own representation by calling super.toXML().

Returns
String
an XML representation of the element
 
protected tryFromXML(parser: PullParser, task: FeedTask) : Void

Try to parse the element from its XML representation, reporting exceptions, if any, to the onException callback.

Try to parse the element from its XML representation, reporting exceptions, if any, to the onException callback. The use of this function helps the parser recover from parse errors.

Parameters
parser
task