FileDocCategorySizeDatePackage
GOMCategory.javaAPI DocApache Lucene 2.1.02539Wed Feb 14 10:46:00 GMT 2007org.apache.lucene.gdata.gom

GOMCategory

public interface GOMCategory implements GOMElement
GOMCategory type

The "category" element conveys information about a category associated with an entry or feed. This specification assigns no meaning to the content (if any) of this element.

RelaxNG Schema:

atomCategory =
element atom:category {
atomCommonAttributes,
attribute term { text },
attribute scheme { atomUri }?,
attribute label { text }?,
undefinedContent
}
author
Simon Willnauer

Fields Summary
public static final String
LOCALNAME
Atom local name for the xml element
public static final String
TERM_ATTRIBUTE
Attribute name (attribute term { text })
public static final String
LABLE_ATTRIBUTE
Attribute name (attribute label { text })
public static final String
SCHEME_ATTRIBUTE
Attribute name (attribute scheme { atomUri })
Constructors Summary
Methods Summary
public abstract java.lang.StringgetLabel()

return
the attribute lable { text }

public abstract java.lang.StringgetScheme()

return
the attribute scheme { atomUri }

public abstract java.lang.StringgetTerm()

return
the attribute term { text }

public abstract voidsetLabel(java.lang.String aLabel)

param
aLabel - the attribute lable { text }

public abstract voidsetScheme(java.lang.String aScheme)

param
aScheme - the attribute scheme { atomUri }

public abstract voidsetTerm(java.lang.String aTerm)

param
aTerm - the attribute term { text }