コード例 #1
0
ファイル: Edge.cs プロジェクト: yijun0819/SmartCampusAAU
 /**
  * @param isElevator the isElevator to set
  */
 public void setElevator(bool isElevator)
 {
     this._isElevator = isElevator;
     if (origin != null && destination != null)
     {
         origin.setIsElevatorEndpoint(isElevator);
         destination.setIsElevatorEndpoint(isElevator);
     }
 }