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

PlugIns编程

开发平台:

Java

  1. /*
  2.  * Copyright (C) 2005 David Orme <djo@coconut-palm-software.com>
  3.  * 
  4.  * All rights reserved. This program and the accompanying materials
  5.  * are made available under the terms of the Eclipse Public License v1.0
  6.  * which accompanies this distribution, and is available at
  7.  * http://www.eclipse.org/legal/epl-v10.html
  8.  *
  9.  * Contributors:
  10.  *     David Orme     - Initial API and implementation
  11.  */
  12. package org.eclipse.jface.examples.databinding.compositetable.test;
  13. public class Person {
  14. public String name = "";
  15. public String address = "";
  16. public String city = "Wheaton";
  17. public String state = "IL";
  18. public Person(String name, String address, String city, String state) {
  19. this.name = name;
  20. this.address = address;
  21. this.city = city;
  22. this.state = state;
  23. }
  24. public Person() {}
  25. }