Examples of LFObjectiveStateImpl


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

     * @param id the primary key for the new l f objective state
     * @return the new l f objective state
     */
    @Override
    public LFObjectiveState create(long id) {
        LFObjectiveState lfObjectiveState = new LFObjectiveStateImpl();

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

        return lfObjectiveState;
    }
View Full Code Here

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

        LFObjectiveState lfObjectiveState) {
        if (lfObjectiveState instanceof LFObjectiveStateImpl) {
            return lfObjectiveState;
        }

        LFObjectiveStateImpl lfObjectiveStateImpl = new LFObjectiveStateImpl();

        lfObjectiveStateImpl.setNew(lfObjectiveState.isNew());
        lfObjectiveStateImpl.setPrimaryKey(lfObjectiveState.getPrimaryKey());

        lfObjectiveStateImpl.setId(lfObjectiveState.getId());
        lfObjectiveStateImpl.setSatisfied(lfObjectiveState.getSatisfied());
        lfObjectiveStateImpl.setNormalizedMeasure(lfObjectiveState.getNormalizedMeasure());
        lfObjectiveStateImpl.setMapKey(lfObjectiveState.getMapKey());
        lfObjectiveStateImpl.setActivityStateID(lfObjectiveState.getActivityStateID());
        lfObjectiveStateImpl.setObjectiveID(lfObjectiveState.getObjectiveID());

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