Search in sources :

Example 1 with AbstractPrimaryKeyFacade

use of org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade in project jbosstools-hibernate by jbosstools.

the class PrimaryKeyFacadeTest method beforeEach.

@BeforeEach
public void beforeEach() {
    primaryKeyTarget = new PrimaryKey(new Table());
    primaryKeyFacade = new AbstractPrimaryKeyFacade(FACADE_FACTORY, primaryKeyTarget) {
    };
}
Also used : Table(org.hibernate.mapping.Table) ITable(org.jboss.tools.hibernate.runtime.spi.ITable) AbstractPrimaryKeyFacade(org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade) IPrimaryKey(org.jboss.tools.hibernate.runtime.spi.IPrimaryKey) PrimaryKey(org.hibernate.mapping.PrimaryKey) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 2 with AbstractPrimaryKeyFacade

use of org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade in project jbosstools-hibernate by jbosstools.

the class PrimaryKeyFacadeTest method beforeEach.

@BeforeEach
public void beforeEach() {
    primaryKeyTarget = new PrimaryKey(new Table());
    primaryKeyFacade = new AbstractPrimaryKeyFacade(FACADE_FACTORY, primaryKeyTarget) {
    };
}
Also used : Table(org.hibernate.mapping.Table) ITable(org.jboss.tools.hibernate.runtime.spi.ITable) AbstractPrimaryKeyFacade(org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade) IPrimaryKey(org.jboss.tools.hibernate.runtime.spi.IPrimaryKey) PrimaryKey(org.hibernate.mapping.PrimaryKey) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 3 with AbstractPrimaryKeyFacade

use of org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade in project jbosstools-hibernate by jbosstools.

the class PrimaryKeyFacadeTest method beforeEach.

@BeforeEach
public void beforeEach() {
    primaryKeyTarget = new PrimaryKey(new Table());
    primaryKeyFacade = new AbstractPrimaryKeyFacade(FACADE_FACTORY, primaryKeyTarget) {
    };
}
Also used : Table(org.hibernate.mapping.Table) ITable(org.jboss.tools.hibernate.runtime.spi.ITable) AbstractPrimaryKeyFacade(org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade) IPrimaryKey(org.jboss.tools.hibernate.runtime.spi.IPrimaryKey) PrimaryKey(org.hibernate.mapping.PrimaryKey) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 4 with AbstractPrimaryKeyFacade

use of org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade in project jbosstools-hibernate by jbosstools.

the class PrimaryKeyFacadeTest method beforeEach.

@BeforeEach
public void beforeEach() {
    primaryKeyTarget = new PrimaryKey();
    primaryKeyTarget.setTable(new Table());
    primaryKeyFacade = new AbstractPrimaryKeyFacade(FACADE_FACTORY, primaryKeyTarget) {
    };
}
Also used : Table(org.hibernate.mapping.Table) ITable(org.jboss.tools.hibernate.runtime.spi.ITable) AbstractPrimaryKeyFacade(org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade) IPrimaryKey(org.jboss.tools.hibernate.runtime.spi.IPrimaryKey) PrimaryKey(org.hibernate.mapping.PrimaryKey) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 5 with AbstractPrimaryKeyFacade

use of org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade in project jbosstools-hibernate by jbosstools.

the class PrimaryKeyFacadeTest method beforeEach.

@BeforeEach
public void beforeEach() {
    primaryKeyTarget = new PrimaryKey(new Table());
    primaryKeyFacade = new AbstractPrimaryKeyFacade(FACADE_FACTORY, primaryKeyTarget) {
    };
}
Also used : Table(org.hibernate.mapping.Table) ITable(org.jboss.tools.hibernate.runtime.spi.ITable) AbstractPrimaryKeyFacade(org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade) IPrimaryKey(org.jboss.tools.hibernate.runtime.spi.IPrimaryKey) PrimaryKey(org.hibernate.mapping.PrimaryKey) BeforeEach(org.junit.jupiter.api.BeforeEach)

Aggregations

PrimaryKey (org.hibernate.mapping.PrimaryKey)11 Table (org.hibernate.mapping.Table)11 AbstractPrimaryKeyFacade (org.jboss.tools.hibernate.runtime.common.AbstractPrimaryKeyFacade)11 IPrimaryKey (org.jboss.tools.hibernate.runtime.spi.IPrimaryKey)11 ITable (org.jboss.tools.hibernate.runtime.spi.ITable)11 BeforeEach (org.junit.jupiter.api.BeforeEach)11