/** * Return the building environment in which the target resides. * * @return The building environment. */ public Environment getEnvironment() { return mPackage.getEnvironment(); }
/** * Return the canonicalized {@link String} descriptor of the target. * * @return The canonicalized descriptor. */ public String getDescriptor() { return mPackage.getDescriptor() + Constant.TARGET_SEPARATOR + mName; }
/** * Return the home directory of the package in which this target resides. * * @return The home directory of the package in which this target resides. */ public File getHomeDirectory() { return mPackage.getHomeDirectory(); }