net.ibizsys.model.util.transpiler.control.layout.PSGrid24LayoutTranspiler Maven / Gradle / Ivy
package net.ibizsys.model.util.transpiler.control.layout;
import com.fasterxml.jackson.databind.node.ObjectNode;
import net.ibizsys.model.IPSModelObject;
import net.ibizsys.model.util.transpiler.IPSModelListTranspiler;
import net.ibizsys.model.util.transpiler.IPSModelTranspileContext;
import net.ibizsys.psmodel.core.util.IPSModel;
import static net.ibizsys.model.control.layout.PSGrid24LayoutImpl.*;
public class PSGrid24LayoutTranspiler extends net.ibizsys.model.util.transpiler.control.layout.PSGrid12LayoutTranspiler{
@Override
protected void onDecompile(IPSModelTranspileContext iPSModelTranspileContext, IPSModelObject iPSModelObject, IPSModel domain, boolean bFullMode) throws Exception {
if(!(iPSModelObject instanceof net.ibizsys.model.control.layout.PSGrid24LayoutImpl)){
super.onDecompile(iPSModelTranspileContext, iPSModelObject, domain, bFullMode);
return;
}
net.ibizsys.model.control.layout.PSGrid24LayoutImpl realPSModelObject = (net.ibizsys.model.control.layout.PSGrid24LayoutImpl)iPSModelObject;
super.onDecompile(iPSModelTranspileContext, iPSModelObject, domain, bFullMode);
}
@Override
protected void onCompile(IPSModelTranspileContext iPSModelTranspileContext, IPSModel domain, ObjectNode objectNode) throws Exception {
super.onCompile(iPSModelTranspileContext, domain, objectNode);
}
}