com.scudata.ide.spl.etl.element.CsRun 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;
/**
* ?????????༭ CS.run()
* ??????ǰCs??ʾ?α?
*
* @author Joancy
*
*/
public class CsRun extends ARun {
/**
* ??ȡ??????
* ???͵ij???????Ϊ
* EtlConsts.TYPE_XXX
* @return EtlConsts.TYPE_CURSOR
*/
public byte getParentType() {
return EtlConsts.TYPE_CURSOR;
}
/**
* ??ȡ?ú????ķ???????
* @return EtlConsts.TYPE_CURSOR
*/
public byte getReturnType() {
return EtlConsts.TYPE_CURSOR;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy