summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odk/Package_examples.mk1
-rw-r--r--odk/examples/java/Inspector/XMethodParametersDialog.java37
-rw-r--r--reportbuilder/Jar_reportbuilder.mk1
-rw-r--r--reportbuilder/java/org/libreoffice/report/ReportFunction.java35
-rw-r--r--ucb/qa/complex/ucb/UCB.java4
-rw-r--r--wizards/Jar_commonwizards.mk1
-rw-r--r--wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java24
7 files changed, 0 insertions, 103 deletions
diff --git a/odk/Package_examples.mk b/odk/Package_examples.mk
index 4463c8ffbc49..80577e955794 100644
--- a/odk/Package_examples.mk
+++ b/odk/Package_examples.mk
@@ -468,7 +468,6 @@ $(eval $(call gb_Package_add_files_with_dir,odk_examples,$(SDKDIRNAME)/examples,
java/Inspector/XDialogProvider.java \
java/Inspector/XInstanceInspector.idl \
java/Inspector/XLanguageSourceCodeGenerator.java \
- java/Inspector/XMethodParametersDialog.java \
java/Inspector/XTreeControlProvider.java \
java/Inspector/XTreePathProvider.java \
java/Inspector/XUnoFacetteNode.java \
diff --git a/odk/examples/java/Inspector/XMethodParametersDialog.java b/odk/examples/java/Inspector/XMethodParametersDialog.java
deleted file mode 100644
index 8bad4f19b9c5..000000000000
--- a/odk/examples/java/Inspector/XMethodParametersDialog.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*************************************************************************
- *
- * The Contents of this file are made available subject to the terms of
- * the BSD license.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of Sun Microsystems, Inc. nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
- * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
- * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- *************************************************************************/
-
-public interface XMethodParametersDialog {
-
-}
diff --git a/reportbuilder/Jar_reportbuilder.mk b/reportbuilder/Jar_reportbuilder.mk
index 9c40a87cd68d..4dd30307471e 100644
--- a/reportbuilder/Jar_reportbuilder.mk
+++ b/reportbuilder/Jar_reportbuilder.mk
@@ -57,7 +57,6 @@ $(eval $(call gb_Jar_add_sourcefiles,reportbuilder,\
reportbuilder/java/org/libreoffice/report/ReportExecutionException \
reportbuilder/java/org/libreoffice/report/ReportExpression \
reportbuilder/java/org/libreoffice/report/ReportExpressionMetaData \
- reportbuilder/java/org/libreoffice/report/ReportFunction \
reportbuilder/java/org/libreoffice/report/ReportJob \
reportbuilder/java/org/libreoffice/report/ReportJobDefinition \
reportbuilder/java/org/libreoffice/report/ReportJobFactory \
diff --git a/reportbuilder/java/org/libreoffice/report/ReportFunction.java b/reportbuilder/java/org/libreoffice/report/ReportFunction.java
deleted file mode 100644
index 668f11c241e6..000000000000
--- a/reportbuilder/java/org/libreoffice/report/ReportFunction.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-package org.libreoffice.report;
-
-/**
- * Functions are statefull computation components.
- *
- * Functions are allowed to have a state, but are considered
- * immutable (the same is true for expressions). Functions are
- * allowed to update their state on every call to 'advance', which
- * signals, that the cursor has been moved.
- *
- * Functions have no way to 'reset' their state, if a reset is needed,
- * the report engine is urged to query a new instance from the ReportAddin.
- */
-public interface ReportFunction extends ReportExpression
-{
-
- public ReportFunction advance(DataRow row);
-}
diff --git a/ucb/qa/complex/ucb/UCB.java b/ucb/qa/complex/ucb/UCB.java
index 7c2ed71e8bef..be511c95444c 100644
--- a/ucb/qa/complex/ucb/UCB.java
+++ b/ucb/qa/complex/ucb/UCB.java
@@ -104,10 +104,6 @@ public class UCB {
return ucb.queryContent(id);
}
- public static interface Verifier {
- public boolean verify(Object object);
- }
-
@Test public void checkWrongFtpConnection() {
try {
String acountUrl = "ftp://noname:nopasswd@*nohost.invalid";
diff --git a/wizards/Jar_commonwizards.mk b/wizards/Jar_commonwizards.mk
index a13a114162ff..3932223eb923 100644
--- a/wizards/Jar_commonwizards.mk
+++ b/wizards/Jar_commonwizards.mk
@@ -105,7 +105,6 @@ $(eval $(call gb_Jar_add_sourcefiles,commonwizards,\
wizards/com/sun/star/wizards/ui/UIConsts \
wizards/com/sun/star/wizards/ui/UnoDialog \
wizards/com/sun/star/wizards/ui/UnoDialog2 \
- wizards/com/sun/star/wizards/ui/XCommandSelectionListener \
wizards/com/sun/star/wizards/ui/XFieldSelectionListener \
wizards/com/sun/star/wizards/ui/XPathSelectionListener \
wizards/com/sun/star/wizards/ui/XCompletion \
diff --git a/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java b/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java
deleted file mode 100644
index 2731e0ba513e..000000000000
--- a/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-package com.sun.star.wizards.ui;
-
-public interface XCommandSelectionListener
-{
- public void CommandSelected(String CommandName);
-}