Package org.jtalks.jcommune.model.entity

Examples of org.jtalks.jcommune.model.entity.Branch.addTopic()


        JCUser user = new JCUser("username", "email", "password");
        Topic topic = new Topic(user, "Topic title");
        topic.setId(topicId);
        Branch branch = new Branch("name", "description");
        branch.setId(branchId);
        branch.addTopic(topic);
        return branch;
    }

}
View Full Code Here

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.