![JAR search and dependency download from the Maven repository](/logo.png)
fi.foyt.fni.persistence.model.materials.VectorImageRevision Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of persistence Show documentation
Show all versions of persistence Show documentation
Forge & Illusion - Persistence
package fi.foyt.fni.persistence.model.materials;
import javax.persistence.Entity;
import javax.persistence.ManyToOne;
import javax.persistence.PrimaryKeyJoinColumn;
@Entity
@PrimaryKeyJoinColumn (name="id")
public class VectorImageRevision extends MaterialRevision {
public VectorImage getVectorImage() {
return vectorImage;
}
public void setVectorImage(VectorImage vectorImage) {
this.vectorImage = vectorImage;
}
@ManyToOne
private VectorImage vectorImage;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy