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

net.ibizsys.model.util.transpiler.IPSModelListTranspiler Maven / Gradle / Ivy

There is a newer version: 8.1.0.559
Show newest version
package net.ibizsys.model.util.transpiler;

import java.util.Collection;

import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.ObjectNode;

import net.ibizsys.model.IPSModelObject;
import net.ibizsys.psmodel.core.util.IPSModel;

public interface IPSModelListTranspiler extends IPSModelTranspiler{

	void decompile(IPSModelTranspileContext iPSModelTranspileContext, Collection psModelList, Collection domainList, boolean fullMode) throws Exception;
	
	
	
	void compile(IPSModelTranspileContext iPSModelTranspileContext, Collection domainList, ArrayNode arrayNode) throws Exception;
	
	
	
	
	/**
	 * 获取模型引用节点
	 * @param iPSModelTranspileContext
	 * @param fullId
	 * @param childMode
	 * @param objectNode
	 * @return
	 * @throws Exception
	 */
	ObjectNode getModelRef(IPSModelTranspileContext iPSModelTranspileContext, String fullId, boolean childMode, ObjectNode objectNode) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy