1 16 package com.google.gwt.sample.dynatable.client; 17 18 import com.google.gwt.user.client.rpc.IsSerializable; 19 20 24 public abstract class Person implements IsSerializable { 25 26 private String description = "DESC"; 27 28 private String name; 29 30 public Person() { 31 } 32 33 public String getDescription() { 34 return description; 35 } 36 37 public String getName() { 38 return name; 39 } 40 41 public abstract String getSchedule(boolean[] daysFilter); 42 43 public void setDescription(String description) { 44 this.description = description; 45 } 46 47 public void setName(String name) { 48 this.name = name; 49 } 50 } 51 | Popular Tags |