Kaydet (Commit) 975866d5 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Michael Stahl

Java cleanup, make package name match folder name

Change-Id: I4229ea7a4ad4d669db824e14ee6a8acb2ac205a0
üst bd0ed13e
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package org.openoffice.qadevOOo.qa.unoapi; package unoapi;
import org.openoffice.Runner; import org.openoffice.Runner;
import org.openoffice.test.OfficeConnection; import org.openoffice.test.OfficeConnection;
......
...@@ -25,7 +25,7 @@ PRJNAME = qadevOOo ...@@ -25,7 +25,7 @@ PRJNAME = qadevOOo
TARGET = qa_unoapi TARGET = qa_unoapi
.IF "$(OOO_JUNIT_JAR)" != "" .IF "$(OOO_JUNIT_JAR)" != ""
PACKAGE = org/openoffice/qadevOOo/qa/unoapi PACKAGE = unoapi
JAVATESTFILES = Test.java JAVATESTFILES = Test.java
JAVAFILES = $(JAVATESTFILES) JAVAFILES = $(JAVATESTFILES)
JARFILES = OOoRunner.jar ridl.jar test.jar JARFILES = OOoRunner.jar ridl.jar test.jar
......
...@@ -39,7 +39,7 @@ $(eval $(call gb_JunitTest_add_sourcefiles,sfx2_unoapi,\ ...@@ -39,7 +39,7 @@ $(eval $(call gb_JunitTest_add_sourcefiles,sfx2_unoapi,\
)) ))
$(eval $(call gb_JunitTest_add_classes,sfx2_unoapi,\ $(eval $(call gb_JunitTest_add_classes,sfx2_unoapi,\
org.openoffice.sfx2.qa.unoapi.Test \ unoapi.Test \
)) ))
# vim: set noet sw=4 ts=4: # vim: set noet sw=4 ts=4:
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package org.openoffice.sfx2.qa.unoapi; package unoapi;
import org.openoffice.Runner; import org.openoffice.Runner;
import org.openoffice.test.OfficeConnection; import org.openoffice.test.OfficeConnection;
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package testtools.servicetests; package servicetests;
import com.sun.star.comp.helper.Bootstrap; import com.sun.star.comp.helper.Bootstrap;
import com.sun.star.container.XSet; import com.sun.star.container.XSet;
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package testtools.servicetests; package servicetests;
import com.sun.star.bridge.XBridgeFactory; import com.sun.star.bridge.XBridgeFactory;
import com.sun.star.bridge.XInstanceProvider; import com.sun.star.bridge.XInstanceProvider;
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package testtools.servicetests; package servicetests;
import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.UnoRuntime;
import complexlib.ComplexTestCase; import complexlib.ComplexTestCase;
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
package testtools.servicetests; package servicetests;
import com.sun.star.lang.NoSupportException; import com.sun.star.lang.NoSupportException;
import com.sun.star.lang.XServiceInfo; import com.sun.star.lang.XServiceInfo;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include <XTestService1.idl> #include <XTestService1.idl>
module testtools { module servicetests { module servicetests {
interface TestService1 { interface TestService1 {
interface XTestService1; interface XTestService1;
...@@ -41,6 +41,6 @@ interface TestService1 { ...@@ -41,6 +41,6 @@ interface TestService1 {
[attribute/*, optional*/] long Prop8Long; [attribute/*, optional*/] long Prop8Long;
}; };
}; }; };
#endif #endif
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include <XTestService3.idl> #include <XTestService3.idl>
#include <XTestService4.idl> #include <XTestService4.idl>
module testtools { module servicetests { module servicetests {
interface TestService2 { interface TestService2 {
interface TestService1; interface TestService1;
...@@ -33,6 +33,6 @@ interface TestService2 { ...@@ -33,6 +33,6 @@ interface TestService2 {
/*[optional] interface XTestService4;*/ /*[optional] interface XTestService4;*/
}; };
}; }; };
#endif #endif
...@@ -21,12 +21,12 @@ ...@@ -21,12 +21,12 @@
#include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/uno/XInterface.idl>
module testtools { module servicetests { module servicetests {
interface XTestService1: com::sun::star::uno::XInterface { interface XTestService1: com::sun::star::uno::XInterface {
long fn1(); long fn1();
}; };
}; }; };
#endif #endif
...@@ -21,12 +21,12 @@ ...@@ -21,12 +21,12 @@
#include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/uno/XInterface.idl>
module testtools { module servicetests { module servicetests {
interface XTestService2: com::sun::star::uno::XInterface { interface XTestService2: com::sun::star::uno::XInterface {
long fn2(); long fn2();
}; };
}; }; };
#endif #endif
...@@ -21,12 +21,12 @@ ...@@ -21,12 +21,12 @@
#include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/uno/XInterface.idl>
module testtools { module servicetests { module servicetests {
interface XTestService3: com::sun::star::uno::XInterface { interface XTestService3: com::sun::star::uno::XInterface {
long fn3(); long fn3();
}; };
}; }; };
#endif #endif
...@@ -21,12 +21,12 @@ ...@@ -21,12 +21,12 @@
#include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/uno/XInterface.idl>
module testtools { module servicetests { module servicetests {
interface XTestService4: com::sun::star::uno::XInterface { interface XTestService4: com::sun::star::uno::XInterface {
long fn4(); long fn4();
}; };
}; }; };
#endif #endif
...@@ -20,7 +20,7 @@ PRJ := ..$/.. ...@@ -20,7 +20,7 @@ PRJ := ..$/..
PRJNAME := testtools PRJNAME := testtools
TARGET := testtools_servicetests TARGET := testtools_servicetests
PACKAGE := testtools$/servicetests PACKAGE := servicetests
JAVATESTFILES := LocalServiceTest.java RemoteServiceTest.java JAVATESTFILES := LocalServiceTest.java RemoteServiceTest.java
JAVAFILES := TestBase.java TestService.java JAVAFILES := TestBase.java TestService.java
IDLTESTFILES := \ IDLTESTFILES := \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment