gov.nasa.worldwind.util.xml.atom.AtomPerson Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2012 United States Government as represented by the Administrator of the
* National Aeronautics and Space Administration.
* All Rights Reserved.
*/
package gov.nasa.worldwind.util.xml.atom;
/**
* Parses the Atom Person element and provides access to it's contents.
*
* @author tag
* @version $Id: AtomPerson.java 1171 2013-02-11 21:45:02Z dcollins $
*/
public class AtomPerson extends AtomAbstractObject
{
public AtomPerson(String namespaceURI)
{
super(namespaceURI);
}
public String getName()
{
return (String) this.getField("name");
}
public String getUri()
{
return (String) this.getField("uri");
}
public String getEmail()
{
return (String) this.getField("email");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy