source: xssim/src/schedframe/scheduling/Offer.java @ 104

Revision 104, 408 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.scheduling;
2
3
4/**
5 *
6 * @author Marcin Krystek
7 *
8 */
9public class Offer extends ResourceUsage {
10
11        private static final long serialVersionUID = 1856283234855902053L;
12        protected double cost;
13       
14        /**
15         * Gets a cost
16         * @return cost
17         */
18        public double getCost(){
19                return this.cost;
20        }
21
22        /**
23         * Sets a cost
24         * @param cost
25         */
26        public void setCost(double cost){
27                this.cost = cost;
28        }
29}
Note: See TracBrowser for help on using the repository browser.