How to add action related to a business object in Metawidget?
- by Gulcan
I use Netbeans 6.8 and try to obtain user interface by using metawidget and JPA. I cannot say
@Action
public void save( ActionEvent event )
{
mSearchMetawidget.save();
}
This annotation gives "incompatible types" error when I add following import.
import org.metawidget.inspector.impl.actionstyle.Action;
What to do? How can I add an action related to my User entity. I want to do "register" action.
Thanks in advance