com.scudata.ide.spl.etl.element.ACreate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.ide.spl.etl.element;
import com.scudata.ide.spl.etl.EtlConsts;
import com.scudata.ide.spl.etl.ObjectElement;
import com.scudata.ide.spl.etl.ParamInfoList;
/**
* ?????????༭ A.create()
* ??????ǰA??ʾ???
*
* @author Joancy
*
*/
public class ACreate extends ObjectElement {
/**
* ??ȡ???ڽ???༭?IJ?????Ϣ?б?
*/
public ParamInfoList getParamInfoList() {
ParamInfoList paramInfos = new ParamInfoList();
return paramInfos;
}
/**
* ??ȡ??????
* ???͵ij???????Ϊ
* EtlConsts.TYPE_XXX
* @return ǰA??ͷ?ĺ???????????EtlConsts.TYPE_SEQUENCE
*/
public byte getParentType() {
return EtlConsts.TYPE_SEQUENCE;
}
/**
* ??ȡ?ú????ķ???????
* @return EtlConsts.TYPE_SEQUENCE
*/
public byte getReturnType() {
return EtlConsts.TYPE_SEQUENCE;
}
/**
* ??ȡ????????SPL????ʽ??ѡ?
*/
public String optionString(){
return "";
}
/**
* ??ȡ????????SPL????ʽ?ĺ?????
*/
public String getFuncName() {
return "create";
}
/**
* ??ȡ????????SPL????ʽ?ĺ?????
*/
public String getFuncBody() {
return null;
}
/**
* ???ú?????
* @param funcBody ??????
*/
public boolean setFuncBody(String funcBody) {
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy