com.scudata.ide.spl.etl.element.ANew 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 java.util.ArrayList;
import com.scudata.chart.Consts;
import com.scudata.ide.spl.etl.EtlConsts;
import com.scudata.ide.spl.etl.FieldDefine;
import com.scudata.ide.spl.etl.ObjectElement;
import com.scudata.ide.spl.etl.ParamInfo;
import com.scudata.ide.spl.etl.ParamInfoList;
/**
* ?????????༭ A.new()
* ??????ǰA??ʾ???
*
* @author Joancy
*
*/
public class ANew extends ObjectElement {
public ArrayList newFields;//??ʹ?õ????У? ????ʽ???ֶ???
public boolean i;
public boolean m;
/**
* ??ȡ???ڽ???༭?IJ?????Ϣ?б?
*/
public ParamInfoList getParamInfoList() {
ParamInfoList paramInfos = new ParamInfoList();
ParamInfo.setCurrent(ANew.class, this);
paramInfos.add(new ParamInfo("newFields",EtlConsts.INPUT_FIELDDEFINE_EXP_FIELD,true));
String group = "options";
paramInfos.add(group, new ParamInfo("i", Consts.INPUT_CHECKBOX));
paramInfos.add(group, new ParamInfo("m", Consts.INPUT_CHECKBOX));
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(){
StringBuffer options = new StringBuffer();
if(i){
options.append("i");
}
if(m){
options.append("m");
}
return options.toString();
}
/**
* ??ȡ????????SPL????ʽ?ĺ?????
*/
public String getFuncName() {
return "new";
}
/**
* ??ȡ????????SPL????ʽ?ĺ?????
* ??setFuncBody???溯????Ȼ?????ʽ?ĸ?ֵҲ???ǻ????
*/
public String getFuncBody() {
return getFieldDefineExp(newFields);
}
/**
* ???ú?????
* @param funcBody ??????
*/
public boolean setFuncBody(String body) {
newFields = getFieldDefine(body);
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy