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

panda.el.opt.object.AccessOpt Maven / Gradle / Ivy

Go to download

Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.

There is a newer version: 1.8.0
Show newest version
package panda.el.opt.object;

import java.util.List;

import panda.bean.Beans;
import panda.el.ELContext;
import panda.el.ELException;
import panda.el.opt.RunMethod;
import panda.el.opt.AbstractTwoOpt;
import panda.lang.Exceptions;
import panda.lang.reflect.Methods;

/**
 * 访问符:'.'
 */
public class AccessOpt extends AbstractTwoOpt implements RunMethod {
	
	public AccessOpt() {
	}

	public AccessOpt(Object left, Object right) {
		this.left = left;
		this.right = right;
	}

	public int getPriority() {
		return 1;
	}

	public Object calculate(ELContext ec) {
		Object obj = getLeftVar(ec);
		if (obj == null) {
			if (ec.strict()) {
				throw new ELException("obj is NULL, can't call obj." + right);
			}
			return null;
		}
		return Beans.getProperty(obj, right.toString());
	}

	public Object run(ELContext ec, List param) {
		Object obj = getLeftVar(ec);
		if (obj == null) {
			throw new NullPointerException();
		}

		Object[] arg = param.toArray();
		try {
			return Methods.invokeMethod(obj, right.toString(), arg);
		}
		catch (Exception e) {
			throw Exceptions.wrapThrow(e);
		}
	}

	public String operator() {
		return ".";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy