use of com.twinsoft.convertigo.beans.core.IApplicationComponent in project convertigo by convertigo.
the class Ionic3Builder method appStyleChanged.
@Override
public void appStyleChanged(final IApplicationComponent appComponent) throws EngineException {
ApplicationComponent app = (ApplicationComponent) appComponent;
if (app != null && initDone) {
synchronized (app) {
writeAppStyle(app);
moveFiles();
Engine.logEngine.trace("(MobileBuilder) Handled 'appStyleChanged'");
}
}
}
use of com.twinsoft.convertigo.beans.core.IApplicationComponent in project convertigo by convertigo.
the class Ionic3Builder method appRouteChanged.
@Override
public void appRouteChanged(final IApplicationComponent appComponent) throws EngineException {
ApplicationComponent app = (ApplicationComponent) appComponent;
if (app != null && initDone) {
synchronized (app) {
writeAppComponentTs(app);
moveFiles();
File appComponentTsFile = new File(ionicWorkDir, "src/app/app.component.temp.ts");
if (appComponentTsFile.exists()) {
writeAppComponentTempTs(app);
}
Engine.logEngine.trace("(MobileBuilder) Handled 'appRouteChanged'");
}
}
}
Aggregations