We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a77c145 commit a7beb3cCopy full SHA for a7beb3c
build.gradle
@@ -4,7 +4,7 @@ plugins {
4
}
5
6
group = 'com.labelzoom.api'
7
-version = '1.0.5'
+version = '1.0.6'
8
9
repositories {
10
mavenCentral()
src/main/java/com/labelzoom/api/model/components/IImage.java
@@ -2,10 +2,10 @@
2
3
import java.awt.image.RenderedImage;
-public interface IImage extends IComponent
+public interface IImage<E extends IImage.IImageWrapper> extends IComponent
{
- IImageWrapper getImage();
- void setImage(IImageWrapper imageWrapper);
+ E getImage();
+ void setImage(E imageWrapper);
float getHorizontalScaling();
11
void setHorizontalScaling(float horizontalScaling);
0 commit comments