Package org.springframework.richclient.samples.simple.domain

Examples of org.springframework.richclient.samples.simple.domain.TodoItem


public class TodoForm  extends AbstractFocussableForm
{
    public TodoForm()
    {
        super(FormModelHelper.createFormModel(new TodoItem(), "todoItemForm"));
    }
View Full Code Here


    // detail form behavior

    @Override
    protected Object getNewFormObject()
    {
        return new TodoItem();
    }
View Full Code Here

TOP

Related Classes of org.springframework.richclient.samples.simple.domain.TodoItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.