Skip to content

Commit 4fd7015

Browse files
committed
Fix properties types
1 parent b82aba8 commit 4fd7015

File tree

16 files changed

+52
-48
lines changed

16 files changed

+52
-48
lines changed

build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ apply plugin: "eclipse"
44

55
version '1.0.2'
66

7+
compileJava {
8+
sourceCompatibility = '1.8'
9+
targetCompatibility = '1.8'
10+
}
11+
712
sourceSets {
813
main.java.srcDirs = ['src-jvm/main/java']
914
main.resources.srcDirs = ['src-jvm/main/resources']

package-lock.php.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
dependencies:
22
jphp-runtime:
3-
version: 1.0.3
3+
version: 1.0.7
44
info:
5-
sha256: 5a440459b3aad3abf800b65480800e75d32c9826df443c0f76cc8d344db60915
6-
size: 1816817
5+
sha256: 36ed7baf5e61332446d93c67354e5fa4d159dd71a19443208fbed12ee44cf962
6+
size: 1817288
77
repo: http://api.develnext.org
88
jphp-gui-ext:
9-
version: 1.0.0
10-
info:
11-
sha256: 0799a21dc55df9c912b62842156df3a72f376dab3b61492d96ae3cdbe914b4ab
12-
size: 1279118
13-
repo: http://api.develnext.org
9+
version: 2.1.1
10+
info: [
11+
]
1412
jphp-xml-ext:
1513
version: 1.0.0
1614
info:
@@ -32,5 +30,6 @@ dependencies:
3230
dn-bundle-plugin:
3331
version: 1.0.2
3432
info:
35-
size: 4307
3633
sha256: c45b70e9a4587301cc90e8083202693255958c17fe7307a22a4f63c7ec29fe62
34+
size: 4307
35+
repo: http://api.develnext.org

package.php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: jphp-charts-ext
2-
version: 1.0.2
2+
version: 1.0.3
33

44
plugins:
55
- Hub

src-jvm/main/java/org/develnext/jphp/ext/charts/classes/axis/UXAxis.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
@Abstract
2323
public class UXAxis<T extends Axis> extends UXRegion<T>{
2424
interface WrappedInterface{
25-
@Property Boolean animated();
26-
@Property Boolean autoRanging();
25+
@Property boolean animated();
26+
@Property boolean autoRanging();
2727
@Property String label();
2828
@Property Side side();
29-
@Property Double tickLabelGap();
30-
@Property Double tickLabelRotation();
31-
@Property Boolean tickLabelsVisible();
32-
@Property Double tickLength();
33-
@Property Boolean tickMarkVisible();
29+
@Property double tickLabelGap();
30+
@Property double tickLabelRotation();
31+
@Property boolean tickLabelsVisible();
32+
@Property double tickLength();
33+
@Property boolean tickMarkVisible();
3434
}
3535

3636
public UXAxis(Environment env, T wrappedObject){

src-jvm/main/java/org/develnext/jphp/ext/charts/classes/axis/UXCategoryAxis.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
@Final
1717
public final class UXCategoryAxis extends UXAxis<CategoryAxis>{
1818
interface WrappedInterface{
19-
@Property Double categorySpacing();
20-
@Property Double endMargin();
21-
@Property Boolean gapStartAndEnd();
22-
@Property Double startMargin();
19+
@Property double categorySpacing();
20+
@Property double endMargin();
21+
@Property boolean gapStartAndEnd();
22+
@Property double startMargin();
2323
}
2424

2525
public UXCategoryAxis(Environment env, CategoryAxis wrappedObject){

src-jvm/main/java/org/develnext/jphp/ext/charts/classes/axis/UXNumberAxis.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
@Name("UXNumberAxis")
1515
public class UXNumberAxis extends UXValueAxis<NumberAxis>{
1616
interface WrappedInterface{
17-
@Property Double tickUnit();
18-
@Property Boolean forceZeroInRange();
17+
@Property double tickUnit();
18+
@Property boolean forceZeroInRange();
1919
}
2020

2121
public UXNumberAxis(Environment env, NumberAxis wrappedObject){

src-jvm/main/java/org/develnext/jphp/ext/charts/classes/axis/UXValueAxis.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
@Abstract
1616
public class UXValueAxis<T extends ValueAxis> extends UXAxis<T>{
1717
interface WrappedInterface{
18-
@Property Double lowerBound();
19-
@Property Integer minorTickCount();
20-
@Property Double minorTickLength();
21-
@Property Boolean minorTickVisible();
22-
@Property Double scale();
23-
@Property Double upperBound();
18+
@Property double lowerBound();
19+
@Property int minorTickCount();
20+
@Property double minorTickLength();
21+
@Property boolean minorTickVisible();
22+
@Property double scale();
23+
@Property double upperBound();
2424
}
2525

2626
public UXValueAxis(Environment env, T wrappedObject){

src-jvm/main/java/org/develnext/jphp/ext/charts/classes/charts/UXAreaChart.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@Name("UXAreaChart")
1616
public class UXAreaChart extends UXXYChart<AreaChart>{
1717
interface WrappedInterface{
18-
@Property Boolean createSymbols();
18+
@Property boolean createSymbols();
1919
}
2020

2121
public UXAreaChart(Environment env, AreaChart wrappedObject){

src-jvm/main/java/org/develnext/jphp/ext/charts/classes/charts/UXBarChart.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
@Name("UXBarChart")
1616
public class UXBarChart extends UXXYChart<BarChart>{
1717
interface WrappedInterface{
18-
@Property Double barGap();
19-
@Property Double categoryGap();
18+
@Property double barGap();
19+
@Property double categoryGap();
2020
}
2121

2222
public UXBarChart(Environment env, BarChart wrappedObject){

src-jvm/main/java/org/develnext/jphp/ext/charts/classes/charts/UXChart.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
@Abstract
1919
public class UXChart<T extends Chart> extends UXRegion<T>{
2020
interface WrappedInterface{
21-
@Property Boolean animated();
21+
@Property boolean animated();
2222
@Property Side legendSide();
23-
@Property Boolean legendVisible();
23+
@Property boolean legendVisible();
2424
@Property String title();
2525
@Property Side titleSide();
2626
}

0 commit comments

Comments
 (0)