OSDN Git Service

srcディレクトリとdocディレクトリを作成
[xdf/git-repos.git] / src / xdf-swing / src / main / java / jp / ac / aiit / xdf / component / swing / attribute / AttributeGetProcessor.java
1 package jp.ac.aiit.xdf.component.swing.attribute;
2
3 /**
4  * 実コンポーネントから属性値を取得するための処理を記述するクラス
5  * 
6  * @author Shunichi Takagi
7  */
8 public interface AttributeGetProcessor {
9         
10         /**
11          * 実際にtargetコンポーネントが保持している属性値を取得する
12          * 
13          * @param target 属性値を取得する対象
14          * @param name 取得する属性の名前
15          * @return 実際の属性値
16          */
17         public Object invokeGet(Object target, String name);
18 }