com.genexus.specific.android.GXSilentTrnSdt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxandroid Show documentation
Show all versions of gxandroid Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus.specific.android;
import com.artech.base.synchronization.bc.PendingEventHelper;
import com.genexus.IGxSilentTrn;
import com.genexus.common.interfaces.IExtensionGXSilentTrnSdt;
import com.genexus.common.interfaces.IPendingEventHelper;
public class GXSilentTrnSdt implements IExtensionGXSilentTrnSdt {
@Override
public IPendingEventHelper CreatePendingEventHelper() {
// TODO Auto-generated method stub
return new PendingEventHelperImpl();
}
class PendingEventHelperImpl implements IPendingEventHelper
{
PendingEventHelper pendingHelper;
@Override
public void prePendingEvents(Object parent, Object t) {
pendingHelper = new PendingEventHelper();
pendingHelper.preSaveEvent((com.genexus.GxSilentTrnSdt) parent,(IGxSilentTrn) t);
}
@Override
public void postPendingEvents(Object parent, Object t) {
if (pendingHelper!=null)
{
pendingHelper.postSaveEvent((com.genexus.GxSilentTrnSdt) parent,(IGxSilentTrn) t);
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy