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

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

Go to download

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

The newest version!
package com.scudata.expression;

import com.scudata.dm.op.Channel;

/**
 * ?ܵ???Ա????????
 * ch.f()
 * @author RunQian
 *
 */
public abstract class ChannelFunction extends MemberFunction {
	protected Channel channel;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy