Skip to content

Commit a7beb3c

Browse files
committed
Debugging
1 parent a77c145 commit a7beb3c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = 'com.labelzoom.api'
7-
version = '1.0.5'
7+
version = '1.0.6'
88

99
repositories {
1010
mavenCentral()

src/main/java/com/labelzoom/api/model/components/IImage.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
import java.awt.image.RenderedImage;
44

5-
public interface IImage extends IComponent
5+
public interface IImage<E extends IImage.IImageWrapper> extends IComponent
66
{
7-
IImageWrapper getImage();
8-
void setImage(IImageWrapper imageWrapper);
7+
E getImage();
8+
void setImage(E imageWrapper);
99

1010
float getHorizontalScaling();
1111
void setHorizontalScaling(float horizontalScaling);

0 commit comments

Comments
 (0)