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;
}