Package com.tapestry5book.pages.chapter10

Source Code of com.tapestry5book.pages.chapter10.CKEditorDemo

package com.tapestry5book.pages.chapter10;

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

public class CKEditorDemo {

    @Property
    private Article article;

    void onPrepare() {
        if (article == null) {
            article = new Article();
        }
    }

    void onSuccess() {
        System.err.println(article.getContent());
    }
}
TOP

Related Classes of com.tapestry5book.pages.chapter10.CKEditorDemo

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.