woolpack.el
インタフェース PropertyELFactory

既知の実装クラスの一覧:
CachePropertyELFactory, MapPropertyELFactory, MapSimilarPropertyELFactory, MaybePropertyELFactory, ReflectionPropertyELFactory, SimilarPropertyELFactory

public interface PropertyELFactory

プロパティ式言語ファクトリです。
適用しているパターン:GettingELELのAbstract Factory。


メソッドの概要
 GettingEL newGetter(Class clazz, String propertyName)
          対象クラスの対象プロパティ名の値を取得するための式言語を返します。
 EL newSetter(Class clazz, String propertyName)
          対象クラスの対象プロパティ名に値を設定するための式言語を返します。
 

メソッドの詳細

newGetter

GettingEL newGetter(Class clazz,
                    String propertyName)
対象クラスの対象プロパティ名の値を取得するための式言語を返します。

パラメータ:
clazz - 対象クラス。
propertyName - プロパティ名。
戻り値:
対象クラスのプロパティの値を取得する式言語。

newSetter

EL newSetter(Class clazz,
             String propertyName)
対象クラスの対象プロパティ名に値を設定するための式言語を返します。

パラメータ:
clazz - 対象クラス。
propertyName - プロパティ名。
戻り値:
対象クラスのプロパティに値を設定する式言語。


Copyright (C) 2006-2007 Takahiro Nakamura. All rights reserved.