今回は日本語などの、英語以外のバージョンも同時にリリースされています
恒例のスプラッシュはこんな感じです
(RC2では"NetBeans 10 years"がなくなってますね…)

MLでも流れましたが、リリーススケジュールが若干遅れ、正式版のリリースは11月22日となったようです。
クリティカルな問題等ありましたら、MLに投げて頂ければと思います
技術系メモBlogです
private XToolkit m_xToolkit;
public DialogExampleAddOn(XComponentContext context) throws Exception {
m_xContext = context;
// ココから追加分
m_xToolkit = (XToolkit) UnoRuntime.queryInterface(
XToolkit.class,
m_xContext.getServiceManager().createInstanceWithContext("com.sun.star.awt.Toolkit", m_xContext));
// ココまで追加分
}
// com.sun.star.frame.XDispatch:
public void dispatch(com.sun.star.util.URL aURL,
com.sun.star.beans.PropertyValue[] aArguments) {
if (aURL.Protocol.compareTo("com.example.dialogexampleaddon:") == 0) {
if (aURL.Path.compareTo("ShowDialogCommand") == 0) {
// add your own code here
// ココから追加分
showMessageBox("Addon Example", "Hello! OOo Addon!!");
// ココまで追加分
return;
}
}
}
public void showMessageBox(String sTitle, String sMessage) {
if (null != m_xFrame && null != m_xToolkit) {
try {
// describe window properties.
WindowDescriptor aDescriptor = new WindowDescriptor();
aDescriptor.Type = WindowClass.MODALTOP;
aDescriptor.WindowServiceName = new String("infobox");
aDescriptor.ParentIndex = -1;
aDescriptor.Parent = (XWindowPeer) UnoRuntime.queryInterface(
XWindowPeer.class, m_xFrame.getContainerWindow());
aDescriptor.Bounds = new Rectangle(0, 0, 300, 200);
aDescriptor.WindowAttributes = WindowAttribute.BORDER | WindowAttribute.MOVEABLE | WindowAttribute.CLOSEABLE;
XWindowPeer xPeer = m_xToolkit.createWindow(aDescriptor);
if (null != xPeer) {
XMessageBox xMsgBox = (XMessageBox) UnoRuntime.queryInterface(
XMessageBox.class, xPeer);
if (null != xMsgBox) {
xMsgBox.setCaptionText(sTitle);
xMsgBox.setMessageText(sMessage);
xMsgBox.execute();
}
}
} catch (IllegalArgumentException ex) {
Logger.getLogger(DialogExampleAddOn.class.getName()).log(Level.SEVERE, null, ex);
}
}
}