Uses of Class
net.sf.tomp.el.author.Task

Packages that use Task
net.sf.tomp.el.author   
net.sf.tomp.el.author.gui   
net.sf.tomp.el.author.io   
 

Uses of Task in net.sf.tomp.el.author
 

Methods in net.sf.tomp.el.author that return Task
 Task Tasks.getFirstTask()
          Returns first lecture in lectures map.
 Task Tasks.getTask(java.lang.String id)
          Returns task with selected ID.
 Task Tasks.newTask(java.lang.String id)
          Creates a new Task and puts it into tasks.
 

Methods in net.sf.tomp.el.author that return types with arguments of type Task
 java.util.Collection<Task> Tasks.getTasks()
          Returns tasks' values.
 

Methods in net.sf.tomp.el.author with parameters of type Task
 void Tasks.addTask(Task c)
          Adds a task to tasks.
 void Tasks.removeTask(Task t)
          Remove the task from tasks collection and deletes its XML file.
 

Uses of Task in net.sf.tomp.el.author.gui
 

Methods in net.sf.tomp.el.author.gui with parameters of type Task
protected  void Author.updateTask(Task t)
          Updates the title and body of the task.
 

Uses of Task in net.sf.tomp.el.author.io
 

Methods in net.sf.tomp.el.author.io that return Task
 Task AuthorIO.loadTask(Course course, java.lang.String id)
          Loads a task of the course
 

Methods in net.sf.tomp.el.author.io with parameters of type Task
 void AuthorIO.saveTask(Task t)
          Builds up a new XML document for task using DOM4J factory and saves it.