Netbeansプラットフォームは最近、バンドルやlayer.xmlファイルなどのリソースファイルの注釈ベースの生成を導入しました。
Netbeans(これらのアノテーションが機能する場所)にMavenベースのNetbeansプラットフォームプロジェクトがあると、まったく同じプロジェクトをEclipseに簡単にインポートできます。
しかし、何らかの理由で、プロジェクトが正しくインポートされていても(または、少なくとも正しくインポートされているように見えます<-必要なライブラリがダウンロードされているなど)、上記のアノテーションはEclipseによって実行されません。
症状には、これらのアノテーションを使用するクラスにインポートされた生成されたクラスがありません。
例:
import org.netbeans.api.settings.ConvertAsProperties;
import org.openide.awt.ActionID;
import org.openide.awt.ActionReference;
import org.openide.windows.TopComponent;
import org.openide.util.NbBundle.Messages;
/**
* Top component which displays something.
*/
@ConvertAsProperties(
dtd = "-//org.something.ui//Exp//EN",
autostore = false)
@TopComponent.Description(
preferredID = "ExpTopComponent",
//iconBase="SET/PATH/TO/ICON/HERE",
persistenceType = TopComponent.PERSISTENCE_ALWAYS)
@TopComponent.Registration(mode = "output", openAtStartup = true)
@ActionID(category = "Window", id = "ExpTopComponent")
@ActionReference(path = "Menu/Window" /*, position = 333 */)
@TopComponent.OpenActionRegistration(
displayName = "#CTL_ExpAction",
preferredID = "ExpTopComponent")
@Messages({
"CTL_ExpAction=Example",
"CTL_ExpTopComponent=Example Window",
"HINT_ExpTopComponent=This is a Example window"
})
public final class ExpTopComponent extends TopComponent {
public ExpTopComponent() {
initComponents();
setName(Bundle.CTL_ExpTopComponent());
setToolTipText(Bundle.HINT_ExpTopComponent());
putClientProperty(TopComponent.PROP_CLOSING_DISABLED, Boolean.TRUE);
}
private void initComponents() {
setLayout(new java.awt.BorderLayout());
outlineView1 = new org.openide.explorer.view.OutlineView();
add(outlineView1, java.awt.BorderLayout.CENTER);
}
private org.openide.explorer.view.OutlineView outlineView1;
@Override
public void componentOpened() {
// TODO add custom code on component opening
}
@Override
public void componentClosed() {
// TODO add custom code on component closing
}
void writeProperties(java.util.Properties p) {
p.setProperty("version", "1.0");
// TODO store your settings
}
void readProperties(java.util.Properties p) {
String version = p.getProperty("version");
// TODO read your settings according to their version
}
}
上記の例に見られるように、アノテーションは拡張的に使用されますが、Eclipseによって処理されないため、バンドル(自動的に生成される必要があります)が既知のクラスとして認識されないため、次の行はコンパイルできません。
setName(Bundle.CTL_ExpTopComponent());
setToolTipText(Bundle.HINT_ExpTopComponent());
さらに詳しい情報:
使用されるEclipseはJunoであり、プロジェクトのプロパティでは注釈処理が有効になっています。
Eclipseでこれを機能させる方法について誰かが何か考えを持っていますか?