Transportation.java
上传用户:hengxinggs
上传日期:2008-01-15
资源大小:212k
文件大小:1k
源码类别:

PlugIns编程

开发平台:

Java

  1. /*******************************************************************************
  2.  * Copyright (c) 2005 IBM Corporation and others.
  3.  * All rights reserved. This program and the accompanying materials
  4.  * are made available under the terms of the Eclipse Public License v1.0
  5.  * which accompanies this distribution, and is available at
  6.  * http://www.eclipse.org/legal/epl-v10.html
  7.  * 
  8.  * Contributors:
  9.  *     IBM Corporation - initial API and implementation
  10.  *******************************************************************************/
  11. package org.eclipse.jface.examples.databinding.model;
  12. public class Transportation extends ModelObject {
  13. private String arrivalTime;
  14. private double price;
  15. public void setArrivalTime(String string) {
  16. String oldValue = arrivalTime;
  17. arrivalTime = string;
  18. firePropertyChange("arrivaltime",oldValue,string);
  19. }
  20. public String getArrivalTime(){
  21. return arrivalTime;
  22. }
  23. public double getPrice() {
  24. return price;
  25. }
  26. public void setPrice(double aPrice) {
  27. double oldPrice = price;
  28. price = aPrice;
  29. firePropertyChange("price",new Double(oldPrice),new Double(price));
  30. }
  31. }