Examples of LFTincanLrsSubStatementImpl


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

     * @param id the primary key for the new l f tincan lrs sub statement
     * @return the new l f tincan lrs sub statement
     */
    @Override
    public LFTincanLrsSubStatement create(long id) {
        LFTincanLrsSubStatement lfTincanLrsSubStatement = new LFTincanLrsSubStatementImpl();

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

        return lfTincanLrsSubStatement;
    }
View Full Code Here

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

        LFTincanLrsSubStatement lfTincanLrsSubStatement) {
        if (lfTincanLrsSubStatement instanceof LFTincanLrsSubStatementImpl) {
            return lfTincanLrsSubStatement;
        }

        LFTincanLrsSubStatementImpl lfTincanLrsSubStatementImpl = new LFTincanLrsSubStatementImpl();

        lfTincanLrsSubStatementImpl.setNew(lfTincanLrsSubStatement.isNew());
        lfTincanLrsSubStatementImpl.setPrimaryKey(lfTincanLrsSubStatement.getPrimaryKey());

        lfTincanLrsSubStatementImpl.setId(lfTincanLrsSubStatement.getId());
        lfTincanLrsSubStatementImpl.setActorID(lfTincanLrsSubStatement.getActorID());
        lfTincanLrsSubStatementImpl.setVerbID(lfTincanLrsSubStatement.getVerbID());
        lfTincanLrsSubStatementImpl.setVerbDisplay(lfTincanLrsSubStatement.getVerbDisplay());
        lfTincanLrsSubStatementImpl.setObjType(lfTincanLrsSubStatement.getObjType());
        lfTincanLrsSubStatementImpl.setObjID(lfTincanLrsSubStatement.getObjID());

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