Package com.tapestry5book.pages.chapter08

Source Code of com.tapestry5book.pages.chapter08.BeanEditFormDemo

package com.tapestry5book.pages.chapter08;

import com.tapestry5book.entities.User;
import org.apache.tapestry5.annotations.Property;

public class BeanEditFormDemo {

    @Property
    private User user;

    void onPrepare(){
        user = new User();
    }
}
TOP

Related Classes of com.tapestry5book.pages.chapter08.BeanEditFormDemo

TOP
Copyright © 2018 www.massapi.com. 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.