* Zero arg constructor for creating the PathWrapper prototype.
*/
public PathWrapper (RhinoCore core) throws PropertyException, NoSuchMethodException {
this.core = core;
// create a dummy path object
this.path = new RequestPath(core.app);
// initialize properties and functions
setParentScope(core.getScope());
setPrototype(null);
defineProperty("length", PathWrapper.class, DONTENUM | READONLY | PERMANENT);