私はそのようなエラーを取得しています:
annotations are not sopported -in source 1.4
次に、私のjdkバージョンを見て、1.4を見ました。jdk 互換バージョンを上げるには、Java SE のバージョンを CVM_JDK から 1.6.0_24 (デフォルト) に変更する必要がありました。
注釈エラーは消えましたが、次のような 2 つのエラーが表示されます。
Error(3,32): package oracle.adfmf.application does not exist
Error(43,47): cannot find symbol
この行について言います。
public class LifeCycleListenerImpl implements LifeCycleListener
{
public LifeCycleListenerImpl()
{
}
/**
* The start method will be called at the start of the application.
*
...
と、
import oracle.adfmf.application.LifeCycleListener;
どうすれば両方にとって正しいことをするつもりですか?どのjdkバージョンがそれを提供しますか?