I want to use JpaInspector
class that is written for Metawidget. However when I insert this class into my Java project in Netbeans 6.8, It gives an error for inspectProperty()
method of JpaInspector
class, "method does not override or implement a method from supertype". Does it mean that parent class of JpaInspector
, that is BaseObjectInspector
, does not have such a method? Or what should I do to use JpaInspector
in my project?
Update
Ok, I import the package "org.metawidget.inspector.jpa.JpaInspector"; however, although some fields of my entity class are set as nullable = false, the stars are not seen. Why is it?