Remove erroneous annotations

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@268 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2018-03-04 09:57:38 +00:00
parent 1089c408ea
commit 3d079375d1
16 changed files with 44 additions and 44 deletions

View file

@ -77,7 +77,7 @@ public final class ApplicationsDialog
// **** Implement XContainerWindowEventHandler
@Override public boolean callHandlerMethod(XWindow xWindow, Object event, String sMethod)
public boolean callHandlerMethod(XWindow xWindow, Object event, String sMethod)
throws com.sun.star.lang.WrappedTargetException {
XDialog xDialog = (XDialog)UnoRuntime.queryInterface(XDialog.class, xWindow);
DialogAccess dlg = new DialogAccess(xDialog);
@ -117,22 +117,22 @@ public final class ApplicationsDialog
return false;
}
@Override public String[] getSupportedMethodNames() {
public String[] getSupportedMethodNames() {
String[] sNames = { "external_event", "AfterExportChange", "ApplicationChange", "BrowseClick", "ExecutableUnfocus", "OptionsUnfocus", "AutomaticClick" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$
return sNames;
}
// **** Implement the interface XServiceInfo
@Override public boolean supportsService(String sServiceName) {
public boolean supportsService(String sServiceName) {
return sServiceName.equals(__serviceName);
}
@Override public String getImplementationName() {
public String getImplementationName() {
return __implementationName;
}
@Override public String[] getSupportedServiceNames() {
public String[] getSupportedServiceNames() {
String[] sSupportedServiceNames = { __serviceName };
return sSupportedServiceNames;
}

View file

@ -111,7 +111,7 @@ public class BibTeXDialog extends DialogBase implements com.sun.star.lang.XIniti
// **** Implement com.sun.star.lang.XInitialization
// We expect to get the current frame and a comma separated list of BibTeX files to use
@Override public void initialize( Object[] objects )
public void initialize( Object[] objects )
throws com.sun.star.uno.Exception {
for (Object object : objects) {
if (object instanceof XFrame) {