1 16 package org.apache.myfaces.examples.listexample; 17 18 import java.io.Serializable ; 19 20 25 public class SimpleCar 26 implements Serializable 27 { 28 private int _id; 29 private String _type; 30 private String _color; 31 32 public SimpleCar(int id, String type, String color) 33 { 34 _id = id; 35 _type = type; 36 _color = color; 37 } 38 39 public int getId() 40 { 41 return _id; 42 } 43 44 public void setId(int id) 45 { 46 _id = id; 47 } 48 49 public String getType() 50 { 51 return _type; 52 } 53 54 public void setType(String type) 55 { 56 _type = type; 57 } 58 59 public String getColor() 60 { 61 return _color; 62 } 63 64 public void setColor(String color) 65 { 66 _color = color; 67 } 68 } 69 | Popular Tags |