org.optaplanner.examples.coachshuttlegathering.domain.Bus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optaplanner-examples Show documentation
Show all versions of optaplanner-examples Show documentation
OptaPlanner solves planning problems.
This lightweight, embeddable planning engine implements powerful and scalable algorithms
to optimize business resource scheduling and planning.
This module contains the examples which demonstrate how to use it in a normal Java application.
/*
* Copyright 2015 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.optaplanner.examples.coachshuttlegathering.domain;
import org.optaplanner.examples.coachshuttlegathering.domain.location.RoadLocation;
import org.optaplanner.examples.common.domain.AbstractPersistable;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamInclude;
@XStreamAlias("CsgBus")
@XStreamInclude({
Coach.class,
Shuttle.class
})
public abstract class Bus extends AbstractPersistable implements BusOrStop {
protected String name;
protected RoadLocation departureLocation;
protected int capacity;
protected int mileageCost;
// Shadow variables
protected BusStop nextStop;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public RoadLocation getDepartureLocation() {
return departureLocation;
}
public void setDepartureLocation(RoadLocation departureLocation) {
this.departureLocation = departureLocation;
}
public int getCapacity() {
return capacity;
}
public void setCapacity(int capacity) {
this.capacity = capacity;
}
public int getMileageCost() {
return mileageCost;
}
public void setMileageCost(int mileageCost) {
this.mileageCost = mileageCost;
}
@Override
public BusStop getNextStop() {
return nextStop;
}
@Override
public void setNextStop(BusStop nextStop) {
this.nextStop = nextStop;
}
// ************************************************************************
// Complex methods
// ************************************************************************
public abstract int getSetupCost();
@Override
public RoadLocation getLocation() {
return departureLocation;
}
@Override
public Bus getBus() {
return this;
}
public abstract int getDistanceFromTo(RoadLocation sourceLocation, RoadLocation targetLocation);
public abstract int getDurationFromTo(RoadLocation sourceLocation, RoadLocation targetLocation);
public abstract StopOrHub getDestination();
@Override
public String toString() {
return name;
}
}