Examples of LFRollupContributionImpl


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

     * @param id the primary key for the new l f rollup contribution
     * @return the new l f rollup contribution
     */
    @Override
    public LFRollupContribution create(long id) {
        LFRollupContribution lfRollupContribution = new LFRollupContributionImpl();

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

        return lfRollupContribution;
    }
View Full Code Here

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

        LFRollupContribution lfRollupContribution) {
        if (lfRollupContribution instanceof LFRollupContributionImpl) {
            return lfRollupContribution;
        }

        LFRollupContributionImpl lfRollupContributionImpl = new LFRollupContributionImpl();

        lfRollupContributionImpl.setNew(lfRollupContribution.isNew());
        lfRollupContributionImpl.setPrimaryKey(lfRollupContribution.getPrimaryKey());

        lfRollupContributionImpl.setId(lfRollupContribution.getId());
        lfRollupContributionImpl.setSequencingID(lfRollupContribution.getSequencingID());
        lfRollupContributionImpl.setContributeToSatisfied(lfRollupContribution.getContributeToSatisfied());
        lfRollupContributionImpl.setContributeToNotSatisfied(lfRollupContribution.getContributeToNotSatisfied());
        lfRollupContributionImpl.setContributeToCompleted(lfRollupContribution.getContributeToCompleted());
        lfRollupContributionImpl.setContributeToIncomplete(lfRollupContribution.getContributeToIncomplete());
        lfRollupContributionImpl.setObjectiveMeasureWeight(lfRollupContribution.getObjectiveMeasureWeight());
        lfRollupContributionImpl.setMeasureSatisfactionIfActive(lfRollupContribution.isMeasureSatisfactionIfActive());

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