ImplessBean
Japanese(N/A)


News
ImplessBean 1.0 is coming soon.

Overview
ImplessBean is a library that make it possible to create JavaBeans instances from only interfaces of it. You don't have to implement accessor methods any more, just define an interface of the bean.

If you have:

public interface Customer {
	String getName();
	void setName(String name);
	int getId();
	void setId(int id);
}

Then you can write as follows.

Customer customer =
	(Customer) BeanFactory.newBeanInstance(Customer.class);
customer.setId(10);
customer.setName("Kohji Nakamura");
int id = customer.getId();
String name = customer.getName();


Copyright (C) Kohji Nakamura 2004. All rights reserved.
SourceForge.net Logo