Exemple #1
0
 /**
  * Find out if the apexes property has been defined.
  *
  * @return True if the apexes property has been defined, false otherwise.
  */
 public boolean isApexesDefined() {
   return apexes.isDefined();
 }
Exemple #2
0
 /** Undefine the apexes property. */
 public void undefineApexes() {
   apexes.undefine();
 }
Exemple #3
0
 /**
  * Get the apexes of this area.
  *
  * @return The apexes.
  */
 @Override
 public int[] getApexes() {
   return apexes.getValue();
 }