Package org.gedcomx.atom
Class CommonAttributes
- java.lang.Object
-
- org.gedcomx.atom.CommonAttributes
-
- Direct Known Subclasses:
Category,ExtensibleElement
public abstract class CommonAttributes extends Object
- Author:
- Ryan Heaton
-
-
Constructor Summary
Constructors Constructor Description CommonAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description URIgetBase()The base.StringgetLang()The language.voidsetBase(URI base)The base.voidsetLang(String lang)The language.
-
-
-
Method Detail
-
getLang
public String getLang()
The language.- Returns:
- The language.
- See Also:
- The atom spec, section 2.
-
setLang
public void setLang(String lang)
The language.- Parameters:
lang- The language.- See Also:
- The atom spec, section 2.
-
getBase
public URI getBase()
The base.- Returns:
- The base.
- See Also:
- The atom spec, section 2.
-
setBase
public void setBase(URI base)
The base.- Parameters:
base- The base.- See Also:
- The atom spec, section 2.
-
-