Package org.apache.isis.tck.dom.simples

Examples of org.apache.isis.tck.dom.simples.SimpleEntity


        return newTransientInstance(SimpleEntity.class);
    }

    @Override
    public SimpleEntity newPersistentEntity(final String name, final Boolean flag) {
        final SimpleEntity entity = newTransientEntity();
        entity.setName(name);
        entity.setFlag(flag);
        getContainer().persist(entity);
        return entity;
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.tck.dom.simples.SimpleEntity

Copyright © 2018 www.massapicom. 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.