org.openrdf.model.impl
Class NamespaceImpl

java.lang.Object
  extended by org.openrdf.model.impl.NamespaceImpl
All Implemented Interfaces:
Serializable, Namespace

public class NamespaceImpl
extends Object
implements Namespace

A default implementation of the Namespace interface.

See Also:
Serialized Form

Constructor Summary
NamespaceImpl(String prefix, String name)
          Creates a new NamespaceImpl object.
 
Method Summary
 String getName()
          Gets the name of the namespace.
 String getPrefix()
          Gets the prefix of the namespace.
 void setName(String name)
          Sets the name of the namespace.
 void setPrefix(String prefix)
          Sets the prefix of the namespace.
 String toString()
          Returns a string representation of the object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NamespaceImpl

public NamespaceImpl(String prefix,
                     String name)
Creates a new NamespaceImpl object.

Parameters:
prefix - The namespace's prefix.
name - The namespace's name.
Method Detail

getPrefix

public String getPrefix()
Gets the prefix of the namespace.

Specified by:
getPrefix in interface Namespace
Returns:
prefix of the namespace

setPrefix

public void setPrefix(String prefix)
Sets the prefix of the namespace.

Parameters:
prefix - The (new) prefix for this namespace.

getName

public String getName()
Gets the name of the namespace.

Specified by:
getName in interface Namespace
Returns:
name of the namespace

setName

public void setName(String name)
Sets the name of the namespace.

Parameters:
name - The (new) name for this namespace.

toString

public String toString()
Returns a string representation of the object.

Overrides:
toString in class Object
Returns:
String representation of the namespace


Copyright © 2001-2012 Aduna. All Rights Reserved.