File tree 5 files changed +10
-10
lines changed
src/main/java/com/labelzoom/api/model/components
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
4
4
}
5
5
6
6
group = ' com.labelzoom.api'
7
- version = ' 1.0.3 '
7
+ version = ' 1.0.4 '
8
8
9
9
repositories {
10
10
mavenCentral()
Original file line number Diff line number Diff line change 2
2
3
3
public interface IContainer extends IComponent
4
4
{
5
- Iterable <IComponent > getChildren ();
5
+ Iterable <? extends IComponent > getChildren ();
6
6
}
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ public interface ILabel
22
22
PageOrientation getOrientation ();
23
23
void setOrientation (PageOrientation orientation );
24
24
25
- List <ILayer > getLayers ();
26
- void setLayers (List <ILayer > layers );
25
+ List <? extends ILayer > getLayers ();
26
+ void setLayers (List <? extends ILayer > layers );
27
27
28
28
IDataCommand getDataCommand ();
29
29
void setDataCommand (IDataCommand dataCommand );
@@ -37,9 +37,9 @@ public interface ILabel
37
37
UUID getId ();
38
38
void setId (UUID id );
39
39
40
- List <IComponent > getElements ();
41
- List <IComponent > getSortedElements ();
42
- void setElements (List <IComponent > elements );
40
+ List <? extends IComponent > getElements ();
41
+ List <? extends IComponent > getSortedElements ();
42
+ void setElements (List <? extends IComponent > elements );
43
43
44
44
void addElement (IComponent element );
45
45
}
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ public interface ILayer
7
7
String getName ();
8
8
void setName (String name );
9
9
10
- List <IComponent > getElements ();
11
- void setElements (List <IComponent > elements );
10
+ List <? extends IComponent > getElements ();
11
+ void setElements (List <? extends IComponent > elements );
12
12
}
Original file line number Diff line number Diff line change 15
15
@ Deprecated
16
16
public interface IVariableField
17
17
{
18
- void setDataField (String fldnam );
18
+ void setDataField (String fieldName );
19
19
String getDataField ();
20
20
21
21
void setFieldValue (String value );
You can’t perform that action at this time.
0 commit comments