2006-02-15から1日間の記事一覧

variable injection

apt

たぶん発想がアフォすぎて誰も手を出さなかったinjection. public class Hoge { @Injection private static final String[] FOO = {"dummy"}; public static void main(String[] args) { @Injection int bar = 0; System.out.println(FOO[bar]); } }annotati…

Property

同じ日付に2回トラバ送ってもしょうがないので省略。 下の項と同じネタで。書き方はともかくとして、こんな使い方できそうですねぇ annotation ? annotates ?f name Property getter = ?g setter = ?s apply TemplateProcessor.process(?f, ?g, ?s) public c…

id:masataka_k:20060215 からのインスパイア。 public class ClassTmpl { private String _member; public Clazz(String test) { _member = test; } public String template() { return _member != null ? _member : ""; } } public class Mixin { private S…