Exemple #1
0
 /**
  * Return the building environment in which the target resides.
  *
  * @return The building environment.
  */
 public Environment getEnvironment() {
   return mPackage.getEnvironment();
 }
Exemple #2
0
 /**
  * Return the canonicalized {@link String} descriptor of the target.
  *
  * @return The canonicalized descriptor.
  */
 public String getDescriptor() {
   return mPackage.getDescriptor() + Constant.TARGET_SEPARATOR + mName;
 }
Exemple #3
0
 /**
  * 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();
 }