View Javadoc

1   /**
2    * Copyright 2011 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.mobility.dining.entity;
17  
18  import java.text.DecimalFormat;
19  
20  public class FoodItem {
21  
22  	private String name;
23  	private double price;
24  	
25  	public FoodItem(String name, double price) {
26  		this.name = name;
27  		this.price = price;
28  	}
29  
30  	public String getName() {
31  		return name;
32  	}
33  
34  	public void setName(String name) {
35  		this.name = name;
36  	}
37  
38  	public double getPrice() {
39  		return price;
40  	}
41  
42  	public void setPrice(double price) {
43  		this.price = price;
44  	}
45  	
46  	public String getPriceFormatted() {
47  		DecimalFormat money = new DecimalFormat("$0.00");
48  		return money.format(this.getPrice());
49  	}
50  	
51  }