/*
 * Created on Aug 2, 2005
 * 
 * $Log$
 * Revision 1.2  2005/09/21 22:00:46  dsowen
 * Split out the access stuff into accesslib.
 * New Creator interface off-loads object creation to user.
 *
 * Revision 1.1  2005/08/03 00:35:29  dsowen
 * Initial commit.
 *
 */
package ws.fugue88.jpath;

/**
 * @author dsowen
 */
public class Identifier extends PathPart {

	public Identifier(final String name)
	{
		_name = name;
	}

	public String getName()
	{
		return _name;
	}

	public String toString()
	{
		return "/" + _name;
	}

	private final String _name;
}