FileDocCategorySizeDatePackage
AbsolutePath.javaAPI DocGlassfish v2 API2862Sat May 05 19:17:16 BST 2007org.apache.taglibs.standard.extra.spath

AbsolutePath

public class AbsolutePath extends Path

Represents an absolute SPath expression. Essentially a marker class.

author
Shawn Bayern

Fields Summary
private boolean
all
private RelativePath
base
Constructors Summary
public AbsolutePath(RelativePath base)
Constructs a new AbsolutePath object based on a RelativePath. An absolute path is the same as a relative path, except that it begins with '/' or '//' (which one, of those two, can be determined by the first Step returned from getSteps()).

	if (base == null)
	    throw new IllegalArgumentException("non-null base required");
	this.base = base;
    
Methods Summary
public java.util.ListgetSteps()

	// simply return our base's Step objects
	return base.getSteps();