Close the task list
- Import the required classes and interfaces.
import javax.microedition.pim.PIMException;
import javax.microedition.pim.ToDoList;
- Invoke ToDoList.close().
- Create code that manages exceptions.
try
{
todoList.close();
}
catch (PIMException e)
{
// Handle exception
}
Was this information helpful? Send us your comments.