org.springframework.richclient.samples.simple.domain
Class TodoItem

Show UML class diagram
java.lang.Object
  extended by org.springframework.richclient.samples.simple.domain.TodoItem
All Implemented Interfaces:
Comparable<TodoItem>

public class TodoItem
extends Object
implements Comparable<TodoItem>


Constructor Summary
TodoItem()
           
TodoItem(String name, String description, Date todoDate)
           
 
Method Summary
 int compareTo(TodoItem item)
           
 String getDescription()
           
 String getName()
           
 Date getTodoDate()
           
 void setDescription(String description)
           
 void setName(String name)
           
 void setTodoDate(Date todoDate)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TodoItem

public TodoItem(String name,
                String description,
                Date todoDate)

TodoItem

public TodoItem()
Method Detail

getName

public String getName()

setName

public void setName(String name)

getDescription

public String getDescription()

setDescription

public void setDescription(String description)

getTodoDate

public Date getTodoDate()

setTodoDate

public void setTodoDate(Date todoDate)

compareTo

public int compareTo(TodoItem item)
Specified by:
compareTo in interface Comparable<TodoItem>


Copyright © 2004-2009 The Spring Framework. All Rights Reserved.