File tree Expand file tree Collapse file tree 13 files changed +46
-47
lines changed
src/main/java/gwt/material/design Expand file tree Collapse file tree 13 files changed +46
-47
lines changed Original file line number Diff line number Diff line change 77 * Licensed under the Apache License, Version 2.0 (the "License");
88 * you may not use this file except in compliance with the License.
99 * You may obtain a copy of the License at
10- *
10+ *
1111 * http://www.apache.org/licenses/LICENSE-2.0
12- *
12+ *
1313 * Unless required by applicable law or agreed to in writing, software
1414 * distributed under the License is distributed on an "AS IS" BASIS,
1515 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Original file line number Diff line number Diff line change 1919 */
2020package gwt .material .design .amcharts .client .bullet ;
2121
22- import gwt .material .design .amcore .client .adapter .Adapter ;
23- import gwt .material .design .amcharts .client .adapter .CircleBulletAdapter ;
2422import gwt .material .design .amcharts .client .properties .CircleBulletProperties ;
2523import gwt .material .design .amcore .client .list .DictionaryTemplate ;
2624import gwt .material .design .amcore .client .state .SpriteState ;
3230@ JsType (isNative = true , namespace = "am4charts" )
3331public class CircleBullet extends Bullet {
3432
35- @ JsProperty
36- public Adapter <CircleBullet , CircleBulletAdapter > adapter ;
37-
3833 @ JsProperty
3934 public Circle circle ;
4035
Original file line number Diff line number Diff line change 1919 */
2020package gwt .material .design .amcharts .client .column ;
2121
22- import gwt .material .design .amcharts .client .adapter .RadarColumnAdapter ;
23- import gwt .material .design .amcore .client .adapter .Adapter ;
22+ import gwt .material .design .amcharts .client .properties .RadarColumnProperties ;
2423import gwt .material .design .amcore .client .base .Slice ;
2524import gwt .material .design .amcore .client .list .DictionaryTemplate ;
26- import gwt .material .design .amcharts .client .properties .RadarColumnProperties ;
2725import gwt .material .design .amcore .client .state .SpriteState ;
2826import jsinterop .annotations .JsProperty ;
2927import jsinterop .annotations .JsType ;
3028
3129@ JsType (isNative = true , namespace = "am4charts" )
3230public class RadarColumn extends Column {
3331
34- @ JsProperty
35- public Adapter <RadarColumn , RadarColumnAdapter > adapter ;
36-
3732 @ JsProperty
3833 public Slice radarColumn ;
3934
Original file line number Diff line number Diff line change 2121
2222import gwt .material .design .amcharts .client .datafield .series .PieSeriesDataFields ;
2323import gwt .material .design .amcharts .client .properties .PieSeriesProperties ;
24+ import gwt .material .design .amcharts .client .tick .PieTick ;
2425import gwt .material .design .amcore .client .base .Percent ;
26+ import gwt .material .design .amcore .client .list .ListTemplate ;
2527import gwt .material .design .amcore .client .properties .SpriteProperties ;
2628import gwt .material .design .amcore .client .state .SpriteState ;
2729import jsinterop .annotations .JsProperty ;
@@ -42,4 +44,7 @@ public class PieSeries extends PercentSeries {
4244 @ JsProperty
4345 public SpriteState <PieSeriesProperties > hiddenState ;
4446
47+ @ JsProperty
48+ public ListTemplate <PieTick > ticks ;
49+
4550}
Original file line number Diff line number Diff line change 1+ /*
2+ * #%L
3+ * GwtMaterial
4+ * %%
5+ * Copyright (C) 2015 - 2018 GwtMaterialDesign
6+ * %%
7+ * Licensed under the Apache License, Version 2.0 (the "License");
8+ * you may not use this file except in compliance with the License.
9+ * You may obtain a copy of the License at
10+ *
11+ * http://www.apache.org/licenses/LICENSE-2.0
12+ *
13+ * Unless required by applicable law or agreed to in writing, software
14+ * distributed under the License is distributed on an "AS IS" BASIS,
15+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ * See the License for the specific language governing permissions and
17+ * limitations under the License.
18+ * #L%
19+ */
20+ package gwt .material .design .amcharts .client .tick ;
21+
22+ import gwt .material .design .amcharts .client .axis .AxisLabelCircular ;
23+ import gwt .material .design .amcore .client .base .Slice ;
24+ import jsinterop .annotations .JsProperty ;
25+ import jsinterop .annotations .JsType ;
26+
27+ @ JsType (isNative = true , namespace = "am4charts" )
28+ public class PieTick extends Tick {
29+
30+ @ JsProperty
31+ public AxisLabelCircular label ;
32+
33+ @ JsProperty
34+ public Slice slice ;
35+ }
Original file line number Diff line number Diff line change 1919 */
2020package gwt .material .design .amcore .client .base ;
2121
22- import gwt .material .design .amcore .client .adapter .Adapter ;
23- import gwt .material .design .amcore .client .adapter .LanguageAdapter ;
2422import gwt .material .design .amcore .client .properties .Locale ;
2523import jsinterop .annotations .JsMethod ;
2624import jsinterop .annotations .JsProperty ;
2927@ JsType (isNative = true , namespace = "am4core" )
3028public class Language extends BaseObjectsEvents {
3129
32- @ JsProperty
33- public Adapter <Language , LanguageAdapter > adapter ;
34-
3530 @ JsProperty
3631 public Locale locale ;
3732
Original file line number Diff line number Diff line change 1919 */
2020package gwt .material .design .amcore .client .base ;
2121
22- import gwt .material .design .amcore .client .adapter .Adapter ;
23- import gwt .material .design .amcore .client .adapter .SliceAdapter ;
24- import gwt .material .design .amcore .client .adapter .SpriteAdapter ;
2522import gwt .material .design .amcore .client .color .Color ;
2623import gwt .material .design .amcore .client .list .DictionaryTemplate ;
2724import gwt .material .design .amcore .client .properties .SliceProperties ;
28- import gwt .material .design .amcore .client .properties .SpriteProperties ;
2925import gwt .material .design .amcore .client .state .SpriteState ;
3026import jsinterop .annotations .JsMethod ;
3127import jsinterop .annotations .JsProperty ;
3430@ JsType (isNative = true , namespace = "am4core" )
3531public class Slice extends Container {
3632
37- @ JsProperty
38- public Adapter <Slice , SliceAdapter > adapter ;
39-
4033 @ JsProperty
4134 public double arc ;
4235
Original file line number Diff line number Diff line change 2020package gwt .material .design .amcore .client .base ;
2121
2222import gwt .material .design .amcore .client .adapter .Adapter ;
23- import gwt .material .design .amcore .client .adapter .SpriteAdapter ;
2423import gwt .material .design .amcore .client .animation .Animation ;
2524import gwt .material .design .amcore .client .animation .InertiaOptions ;
2625import gwt .material .design .amcore .client .animation .InertialTypes ;
4948public class Sprite extends BaseObjectsEvents {
5049
5150 @ JsProperty
52- public Adapter < Sprite , SpriteAdapter > adapter ;
51+ public Adapter adapter ;
5352
5453 /**
5554 * @see Align
Original file line number Diff line number Diff line change 2020package gwt .material .design .amcore .client .dataitem ;
2121
2222import com .google .gwt .core .client .JsDate ;
23- import gwt .material .design .amcore .client .adapter .Adapter ;
24- import gwt .material .design .amcore .client .adapter .DataItemAdapter ;
2523import gwt .material .design .amcore .client .animation .Animation ;
2624import gwt .material .design .amcore .client .animation .AnimationOptions ;
2725import gwt .material .design .amcore .client .base .BaseObjectsEvents ;
3735@ JsType (isNative = true , namespace = "am4charts" )
3836public class DataItem extends BaseObjectsEvents {
3937
40- @ JsProperty
41- public Adapter <DataItem , DataItemAdapter > adapter ;
42-
4338 @ JsProperty
4439 public Animation [] animations ;
4540
Original file line number Diff line number Diff line change 77 * Licensed under the Apache License, Version 2.0 (the "License");
88 * you may not use this file except in compliance with the License.
99 * You may obtain a copy of the License at
10- *
10+ *
1111 * http://www.apache.org/licenses/LICENSE-2.0
12- *
12+ *
1313 * Unless required by applicable law or agreed to in writing, software
1414 * distributed under the License is distributed on an "AS IS" BASIS,
1515 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
You can’t perform that action at this time.
0 commit comments