Package tk.vovanok.data

Examples of tk.vovanok.data.Comment


    public void init(){
        allComments = new ArrayList<>();
    }
   
    public void addComment(){
        Comment c = new Comment();
        c.setText(getText());
        c.setDate(new Date());
        c.setName(loginBean.getLogin());
       
        System.out.println("TEXT: "+text);
       
        getAllComments().add(c);
    }
View Full Code Here

TOP

Related Classes of tk.vovanok.data.Comment

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.