gluu
公開メンバ関数 | 静的公開変数類 | 非公開メンバ関数 | 静的非公開変数類 | 全メンバ一覧
org.gluu.oxtrust.util.jsf.GluuJsfLibrary クラス
org.gluu.oxtrust.util.jsf.GluuJsfLibrary の継承関係図
Inheritance graph
org.gluu.oxtrust.util.jsf.GluuJsfLibrary 連携図
Collaboration graph

公開メンバ関数

 GluuJsfLibrary ()
 

静的公開変数類

static final String NAMESPACE = "http://www.gluu.org/jsf/functions"
 
static final GluuJsfLibrary INSTANCE = new GluuJsfLibrary()
 

非公開メンバ関数

void registerStaticMethods ()
 

静的非公開変数類

static Logger log = Logger.getLogger(GluuJsfLibrary.class)
 

詳解

Gluu tag library.

著者
Yuriy Movchan Date: 11.09.2010

構築子と解体子

◆ GluuJsfLibrary()

org.gluu.oxtrust.util.jsf.GluuJsfLibrary.GluuJsfLibrary ( )
inline
32  {
33  super(NAMESPACE);
35  }
void registerStaticMethods()
Definition: GluuJsfLibrary.java:37
static final String NAMESPACE
Definition: GluuJsfLibrary.java:26

関数詳解

◆ registerStaticMethods()

void org.gluu.oxtrust.util.jsf.GluuJsfLibrary.registerStaticMethods ( )
inlineprivate
37  {
38  try {
39  Method[] methods = JsfFunctions.class.getMethods();
40 
41  for (Method method : methods) {
42  if (Modifier.isStatic(method.getModifiers())) {
43  this.addFunction(method.getName(), method);
44  }
45  }
46  } catch (Exception e) {
47  log.error(e);
48  }
49  }
static Logger log
Definition: GluuJsfLibrary.java:28

メンバ詳解

◆ INSTANCE

final GluuJsfLibrary org.gluu.oxtrust.util.jsf.GluuJsfLibrary.INSTANCE = new GluuJsfLibrary()
static

◆ log

Logger org.gluu.oxtrust.util.jsf.GluuJsfLibrary.log = Logger.getLogger(GluuJsfLibrary.class)
staticprivate

◆ NAMESPACE

final String org.gluu.oxtrust.util.jsf.GluuJsfLibrary.NAMESPACE = "http://www.gluu.org/jsf/functions"
static

Tag library namespace to import this library in facelets


このクラス詳解は次のファイルから抽出されました: