Package com.tapestry5book.pages.chapter06

Source Code of com.tapestry5book.pages.chapter06.FormFragmentDemo

package com.tapestry5book.pages.chapter06;

import com.tapestry5book.entities.Address;
import org.apache.tapestry5.annotations.Persist;
import org.apache.tapestry5.annotations.Property;

public class FormFragmentDemo {

    @Property
    private Address billingAddress;

    @Property
    private Address shippingAddress;

    @Property
    @Persist
    private boolean shipToAnotherAddress;

    void onPrepare() {
        billingAddress = new Address();
        shippingAddress = new Address();
    }

    void onSuccess() {
        System.err.println(billingAddress.getStreet());
        System.err.println(shippingAddress.getStreet());
    }

}
TOP

Related Classes of com.tapestry5book.pages.chapter06.FormFragmentDemo

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.