2010-01-05から1日間の記事一覧

でぺんでんしー[2]

なんかうまいこと Initializer が動いたので、この雰囲気で作っていこう。 public class GetTest { public static void main(String[] args) { SampleComponent obj = Freja.get(SampleComponent.class); obj.helloworld(); } } public interface SampleComp…

でぺんでんしー

public class GetTest { public static void main(String[] args) { SampleComponent obj = Freja.get(SampleComponent.class); obj.helloworld(); } } public interface SampleComponent { public void helloworld(); } @Component public class SampleComp…