All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genexus.specific.android.GXSilentTrnSdt Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

There is a newer version: 4.7.0
Show newest version
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