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

com.scudata.expression.OperableFunction Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.expression;

import com.scudata.dm.op.Operable;

/**
 * ?ɸ??Ӳ????????Ա????????
 * cs.f()??ch.f()
 * @author RunQian
 *
 */
public abstract class OperableFunction extends MemberFunction {
	protected Operable operable;

	public boolean isLeftTypeMatch(Object obj) {
		return obj instanceof Operable;
	}
	
	public void setDotLeftObject(Object obj) {
		operable = (Operable)obj;
	}
	
	/**
	 * ?ͷŽڵ????õĵ?????????Ķ???
	 */
	public void releaseDotLeftObject() {
		operable = null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy