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;
|