com.scudata.expression.CanvasFunction 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.expression;
import com.scudata.dm.Canvas;
/**
* Canvas.f() ??????Ա??????Ҫ?̳д???
* @author Joancy
*
*/
public abstract class CanvasFunction extends MemberFunction {
protected Canvas canvas; // ????
public boolean isLeftTypeMatch(Object obj) {
return obj instanceof Canvas;
}
public void setDotLeftObject(Object obj) {
canvas = (Canvas)obj;
}
/**
* ?ͷŽڵ????õĵ?????????Ķ???
*/
public void releaseDotLeftObject() {
canvas = null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy