コード例 #1
0
ファイル: Blockade.java プロジェクト: jpollo/rcrss
 /**
  * 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();
 }
コード例 #2
0
ファイル: Blockade.java プロジェクト: jpollo/rcrss
 /** Undefine the apexes property. */
 public void undefineApexes() {
   apexes.undefine();
 }
コード例 #3
0
ファイル: Blockade.java プロジェクト: jpollo/rcrss
 /**
  * Get the apexes of this area.
  *
  * @return The apexes.
  */
 @Override
 public int[] getApexes() {
   return apexes.getValue();
 }