File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -613,9 +613,9 @@ public class FooPresenter<V extends FooView> extends AbstractParentPresenter<V>
613613 }
614614
615615 public void onAction () {
616- var config = new ComponentConfig ();
616+ var params = new ComponentParams ();
617617 ...
618- getView(). getComposer(). addBar(config );
618+ getView(). getComposer(). addBar(params );
619619 // use bar
620620 }
621621
@@ -631,9 +631,9 @@ public class FooFxView<P extends FooPresenter<?>> extends AbstractParentFxView<P
631631 public class Composer extends AbstractParentFxView<P > .Composer implements FooView .Composer {
632632
633633 @Override
634- public void addBar (ComponentConfig config ) {
634+ public void addBar (ComponentParams params ) {
635635 bar = new BarFxView ();
636- var p = new BarPresenter (bar, config );
636+ var p = new BarPresenter (bar, params );
637637 p. initialize();
638638 getModifiableChildren(). add(bar);
639639 someNode. getChildren(). add(bar. getNode()); // adding bar view into foo view
You can’t perform that action at this time.
0 commit comments