xelelmapper.java

来自「ZK 基础介绍 功能操作 模块 结合数据库操作」· Java 代码 · 共 47 行

JAVA
47
字号
/* XelELMapper.java{{IS_NOTE	Purpose:			Description:			History:		Fri Aug 31 16:01:10     2007, Created by tomyeh}}IS_NOTECopyright (C) 2007 Potix Corporation. All Rights Reserved.{{IS_RIGHT	This program is distributed under GPL Version 2.0 in the hope that	it will be useful, but WITHOUT ANY WARRANTY.}}IS_RIGHT*/package org.zkoss.zkmax.xel.el21;import java.lang.reflect.Method;import org.zkoss.xel.Function;import org.zkoss.xel.FunctionMapper;/** * An EL function mapper that is based on a XEL function mapper. * * @author tomyeh * @since 3.0.0 */public class XelELMapper extends javax.el.FunctionMapper {	private FunctionMapper _mapper;	public XelELMapper(FunctionMapper mapper) {		_mapper = mapper;	}	public Method resolveFunction(String prefix, String name) {		if (_mapper != null) {			final Function f = _mapper.resolveFunction(prefix, name);			if (f != null)				return f.toMethod();		}		return null;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?