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

GOMLink

public interface GOMLink implements GOMElement
The "atom:link" element defines a reference from an entry or feed to a Web resource. This specification assigns no meaning to the content (if any) of this element.
atomLink =
element atom:link {
atomCommonAttributes,
attribute href { atomUri },
attribute rel { atomNCName | atomUri }?,
attribute type { atomMediaType }?,
attribute hreflang { atomLanguageTag }?,
attribute title { text }?,
attribute length { text }?,
undefinedContent
}
author
Simon Willnauer

Fields Summary
public static final String
LOCALNAME
Atom local name for the xml element
Constructors Summary
Methods Summary
public java.lang.StringgetHref()

return
- the href attribute value of the element link

public java.lang.StringgetHrefLang()

return
the hreflang attribute value of the element link

public java.lang.IntegergetLength()

return
- the length attribute value of the element link.

public java.lang.StringgetRel()

return
- the rel attribute value of the element link.

public java.lang.StringgetTitle()

return
- the title attribute value of the element link.

public java.lang.StringgetType()

return
- the type attribute value of the element link.

public voidsetHref(java.lang.String aHref)

param
aHref - the href attribute value of the element link to set.

public voidsetHrefLang(java.lang.String aHrefLang)

param
aHrefLang - the hreflang attribute value of the element link to set.

public voidsetLength(java.lang.Integer aLength)

param
aLength - the length attribute value of the element link to set.

public voidsetRel(java.lang.String aRel)

param
aRel - the rel attribute value of the element link to set

public voidsetTitle(java.lang.String aTitle)

param
aTitle - the title attribute value of the element link to set

public voidsetType(java.lang.String aType)

param
aType - the type attribute value of the element link.