| 1 |
|
package yarfraw.io.parser; |
| 2 |
|
|
| 3 |
|
import javax.xml.namespace.QName; |
| 4 |
|
|
| 5 |
|
public class ElementQName{ |
| 6 |
0 |
private ElementQName(){} |
| 7 |
66 |
public final static QName ATOM10_PUBLISHED = new QName("http://www.w3.org/2005/Atom", "published"); |
| 8 |
66 |
public final static QName ATOM10_TITLE = new QName("http://www.w3.org/2005/Atom", "title"); |
| 9 |
66 |
public final static QName ATOM10_ID = new QName("http://www.w3.org/2005/Atom", "id"); |
| 10 |
66 |
public final static QName ATOM10_RIGHTS = new QName("http://www.w3.org/2005/Atom", "rights"); |
| 11 |
66 |
public final static QName ATOM10_LINK = new QName("http://www.w3.org/2005/Atom", "link"); |
| 12 |
66 |
public final static QName ATOM10_UPDATED = new QName("http://www.w3.org/2005/Atom", "updated"); |
| 13 |
66 |
public final static QName ATOM10_CONTRIBUTOR = new QName("http://www.w3.org/2005/Atom", "contributor"); |
| 14 |
66 |
public final static QName ATOM10_SUMMARY = new QName("http://www.w3.org/2005/Atom", "summary"); |
| 15 |
66 |
public final static QName ATOM10_CATEGORY = new QName("http://www.w3.org/2005/Atom", "category"); |
| 16 |
66 |
public final static QName ATOM10_CONTENT = new QName("http://www.w3.org/2005/Atom", "content"); |
| 17 |
66 |
public final static QName ATOM10_AUTHOR = new QName("http://www.w3.org/2005/Atom", "author"); |
| 18 |
66 |
public final static QName ATOM10_SOURCE = new QName("http://www.w3.org/2005/Atom", "source"); |
| 19 |
66 |
public final static QName ATOM10_ICON = new QName("http://www.w3.org/2005/Atom", "icon"); |
| 20 |
66 |
public final static QName ATOM10_SUBTITLE = new QName("http://www.w3.org/2005/Atom", "subtitle"); |
| 21 |
66 |
public final static QName ATOM10_LOGO = new QName("http://www.w3.org/2005/Atom", "logo"); |
| 22 |
66 |
public final static QName ATOM10_GENERATOR = new QName("http://www.w3.org/2005/Atom", "generator"); |
| 23 |
66 |
public final static QName ATOM10_ENTRY = new QName("http://www.w3.org/2005/Atom", "entry"); |
| 24 |
66 |
public final static QName ATOM10_EMAIL = new QName("http://www.w3.org/2005/Atom", "email"); |
| 25 |
66 |
public final static QName ATOM10_NAME = new QName("http://www.w3.org/2005/Atom", "name"); |
| 26 |
66 |
public final static QName ATOM10_URI = new QName("http://www.w3.org/2005/Atom", "uri"); |
| 27 |
66 |
public final static QName ATOM10_FEED = new QName("http://www.w3.org/2005/Atom", "feed"); |
| 28 |
|
|
| 29 |
66 |
public final static QName RSS10_LINK = new QName("http://purl.org/rss/1.0/", "link"); |
| 30 |
66 |
public final static QName RSS10_URL = new QName("http://purl.org/rss/1.0/", "url"); |
| 31 |
66 |
public final static QName RSS10_NAME = new QName("http://purl.org/rss/1.0/", "name"); |
| 32 |
66 |
public final static QName RSS10_IMAGE = new QName("http://purl.org/rss/1.0/", "image"); |
| 33 |
66 |
public final static QName RSS10_TITLE = new QName("http://purl.org/rss/1.0/", "title"); |
| 34 |
66 |
public final static QName RSS10_DESCRIPTION = new QName("http://purl.org/rss/1.0/", "description"); |
| 35 |
66 |
public final static QName RSS10_UPDATEBASE = new QName("http://purl.org/rss/1.0/modules/syndication/", "updateBase"); |
| 36 |
66 |
public final static QName RSS10_TEXTINPUT = new QName("http://purl.org/rss/1.0/", "textinput"); |
| 37 |
66 |
public final static QName RSS10_RELATION = new QName("http://purl.org/dc/elements/1.1/", "relation"); |
| 38 |
66 |
public final static QName RSS10_CHANNEL = new QName("http://purl.org/rss/1.0/", "channel"); |
| 39 |
|
|
| 40 |
66 |
public final static QName RSS10_UPDATEFREQUENCY = new QName("http://purl.org/rss/1.0/modules/syndication/", "updateFrequency"); |
| 41 |
|
|
| 42 |
66 |
public final static QName RSS10_DC_CONTRIBUTOR = new QName("http://purl.org/dc/elements/1.1/", "contributor"); |
| 43 |
66 |
public final static QName RSS10_DC_ITEM_TITLE = new QName("http://purl.org/dc/elements/1.1/", "title"); |
| 44 |
66 |
public final static QName RSS10_DC_PUBLISHER = new QName("http://purl.org/dc/elements/1.1/", "publisher"); |
| 45 |
66 |
public final static QName RSS10_DC_TYPE = new QName("http://purl.org/dc/elements/1.1/", "type"); |
| 46 |
66 |
public final static QName RSS10_DC_LANGUAGE = new QName("http://purl.org/dc/elements/1.1/", "language"); |
| 47 |
66 |
public final static QName RSS10_DC_CREATOR = new QName("http://purl.org/dc/elements/1.1/", "creator"); |
| 48 |
66 |
public final static QName RSS10_DC_RIGHTS = new QName("http://purl.org/dc/elements/1.1/", "rights"); |
| 49 |
66 |
public final static QName RSS10_DC_IDENTIFIER = new QName("http://purl.org/dc/elements/1.1/", "identifier"); |
| 50 |
66 |
public final static QName RSS10_ITEM = new QName("http://purl.org/rss/1.0/", "item"); |
| 51 |
66 |
public final static QName RSS10_ITEMS = new QName("http://purl.org/rss/1.0/", "items"); |
| 52 |
|
|
| 53 |
|
|
| 54 |
66 |
public final static QName RSS10_DC_FORMAT = new QName("http://purl.org/dc/elements/1.1/", "format"); |
| 55 |
66 |
public final static QName RSS10_DC_SUBJECT = new QName("http://purl.org/dc/elements/1.1/", "subject"); |
| 56 |
66 |
public final static QName RSS10_DC_SOURCE = new QName("http://purl.org/dc/elements/1.1/", "source"); |
| 57 |
66 |
public final static QName RSS10_DC_COVERAGE = new QName("http://purl.org/dc/elements/1.1/", "coverage"); |
| 58 |
66 |
public final static QName RSS10_DC_DATE = new QName("http://purl.org/dc/elements/1.1/", "date"); |
| 59 |
66 |
public final static QName RSS10_UPDATEPERIOD = new QName("http://purl.org/rss/1.0/modules/syndication/", "updatePeriod"); |
| 60 |
|
|
| 61 |
66 |
public final static QName RSS20_TITLE = new QName("", "title"); |
| 62 |
66 |
public final static QName RSS20_NAME = new QName("", "name"); |
| 63 |
66 |
public final static QName RSS20_TTL = new QName("", "ttl"); |
| 64 |
66 |
public final static QName RSS20_URL = new QName("", "url"); |
| 65 |
66 |
public final static QName RSS20_CATEGORY = new QName("", "category"); |
| 66 |
66 |
public final static QName RSS20_LINK = new QName("", "link"); |
| 67 |
66 |
public final static QName RSS20_PUBDATE = new QName("", "pubDate"); |
| 68 |
66 |
public final static QName RSS20_WEBMASTER = new QName("", "webMaster"); |
| 69 |
66 |
public final static QName RSS20_SKIPDAYS = new QName("", "skipDays"); |
| 70 |
66 |
public final static QName RSS20_LANGUAGE = new QName("", "language"); |
| 71 |
66 |
public final static QName RSS20_CLOUD = new QName("", "cloud"); |
| 72 |
66 |
public final static QName RSS20_SKIPHOURS = new QName("", "skipHours"); |
| 73 |
66 |
public final static QName RSS20_TEXTINPUT = new QName("", "textInput"); |
| 74 |
66 |
public final static QName RSS20_MANAGINGEDITOR = new QName("", "managingEditor"); |
| 75 |
66 |
public final static QName RSS20_DOCS = new QName("", "docs"); |
| 76 |
66 |
public final static QName RSS20_LAST_BUILD_DATE = new QName("", "lastBuildDate"); |
| 77 |
66 |
public final static QName RSS20_DESCRIPTION = new QName("", "description"); |
| 78 |
66 |
public final static QName RSS20_IMAGE = new QName("", "image"); |
| 79 |
66 |
public final static QName RSS20_GENERATOR = new QName("", "generator"); |
| 80 |
66 |
public final static QName RSS20_COPYRIGHTS = new QName("", "copyright"); |
| 81 |
66 |
public final static QName RSS20_RSS = new QName("", "rss"); |
| 82 |
66 |
public final static QName RSS20_ITEM = new QName("", "item"); |
| 83 |
66 |
public final static QName RSS20_CHANNEL = new QName("", "channel"); |
| 84 |
66 |
public final static QName RSS20_COMMENTS = new QName("", "comments"); |
| 85 |
66 |
public final static QName RSS20_ENCLOSURE = new QName("", "enclosure"); |
| 86 |
66 |
public final static QName RSS20_GUID = new QName("", "guid"); |
| 87 |
66 |
public final static QName RSS20_SOURCE = new QName("", "source"); |
| 88 |
66 |
public final static QName RSS20_AUTHOR = new QName("", "author"); |
| 89 |
|
|
| 90 |
66 |
public final static QName RSS20_WIDTH = new QName("", "width"); |
| 91 |
66 |
public final static QName RSS20_HEIGHT = new QName("", "height"); |
| 92 |
|
} |