Examples of LFGlobalObjectiveStateImpl


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

     * @param id the primary key for the new l f global objective state
     * @return the new l f global objective state
     */
    @Override
    public LFGlobalObjectiveState create(long id) {
        LFGlobalObjectiveState lfGlobalObjectiveState = new LFGlobalObjectiveStateImpl();

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

        return lfGlobalObjectiveState;
    }
View Full Code Here

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

        LFGlobalObjectiveState lfGlobalObjectiveState) {
        if (lfGlobalObjectiveState instanceof LFGlobalObjectiveStateImpl) {
            return lfGlobalObjectiveState;
        }

        LFGlobalObjectiveStateImpl lfGlobalObjectiveStateImpl = new LFGlobalObjectiveStateImpl();

        lfGlobalObjectiveStateImpl.setNew(lfGlobalObjectiveState.isNew());
        lfGlobalObjectiveStateImpl.setPrimaryKey(lfGlobalObjectiveState.getPrimaryKey());

        lfGlobalObjectiveStateImpl.setId(lfGlobalObjectiveState.getId());
        lfGlobalObjectiveStateImpl.setSatisfied(lfGlobalObjectiveState.getSatisfied());
        lfGlobalObjectiveStateImpl.setNormalizedMeasure(lfGlobalObjectiveState.getNormalizedMeasure());
        lfGlobalObjectiveStateImpl.setAttemptCompleted(lfGlobalObjectiveState.getAttemptCompleted());
        lfGlobalObjectiveStateImpl.setMapKey(lfGlobalObjectiveState.getMapKey());
        lfGlobalObjectiveStateImpl.setTreeID(lfGlobalObjectiveState.getTreeID());

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