Package eu.planets_project.tb.impl.model

Examples of eu.planets_project.tb.impl.model.CommentImpl


            return null;
        }
    }
   
    public void deleteComment(long id) {
        CommentImpl t_helper = manager.find(CommentImpl.class, id);
        manager.remove(t_helper);
    }
View Full Code Here


        CommentImpl t_helper = manager.find(CommentImpl.class, id);
        manager.remove(t_helper);
    }

    public void deleteComment(Comment comment) {
        CommentImpl t_helper = manager.find(CommentImpl.class, comment.getCommentID());
        manager.remove(t_helper);
    }
View Full Code Here

TOP

Related Classes of eu.planets_project.tb.impl.model.CommentImpl

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.