Examples of LFQuizQuestionCategoryImpl


Examples of com.arcusys.learn.persistence.liferay.model.impl.LFQuizQuestionCategoryImpl

     * @param id the primary key for the new l f quiz question category
     * @return the new l f quiz question category
     */
    @Override
    public LFQuizQuestionCategory create(long id) {
        LFQuizQuestionCategory lfQuizQuestionCategory = new LFQuizQuestionCategoryImpl();

        lfQuizQuestionCategory.setNew(true);
        lfQuizQuestionCategory.setPrimaryKey(id);

        return lfQuizQuestionCategory;
    }
View Full Code Here

Examples of com.arcusys.learn.persistence.liferay.model.impl.LFQuizQuestionCategoryImpl

        LFQuizQuestionCategory lfQuizQuestionCategory) {
        if (lfQuizQuestionCategory instanceof LFQuizQuestionCategoryImpl) {
            return lfQuizQuestionCategory;
        }

        LFQuizQuestionCategoryImpl lfQuizQuestionCategoryImpl = new LFQuizQuestionCategoryImpl();

        lfQuizQuestionCategoryImpl.setNew(lfQuizQuestionCategory.isNew());
        lfQuizQuestionCategoryImpl.setPrimaryKey(lfQuizQuestionCategory.getPrimaryKey());

        lfQuizQuestionCategoryImpl.setId(lfQuizQuestionCategory.getId());
        lfQuizQuestionCategoryImpl.setTitle(lfQuizQuestionCategory.getTitle());
        lfQuizQuestionCategoryImpl.setDescription(lfQuizQuestionCategory.getDescription());
        lfQuizQuestionCategoryImpl.setQuizId(lfQuizQuestionCategory.getQuizId());
        lfQuizQuestionCategoryImpl.setParentId(lfQuizQuestionCategory.getParentId());
        lfQuizQuestionCategoryImpl.setArrangementIndex(lfQuizQuestionCategory.getArrangementIndex());

        return lfQuizQuestionCategoryImpl;
    }
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.