Index: modules/logging/make/common/build.xml =================================================================== --- modules/logging/make/common/build.xml (revision 389603) +++ modules/logging/make/common/build.xml (working copy) @@ -91,12 +91,6 @@ - - - - - - Index: modules/rmi/META-INF/MANIFEST.MF =================================================================== --- modules/rmi/META-INF/MANIFEST.MF (revision 0) +++ modules/rmi/META-INF/MANIFEST.MF (revision 0) @@ -0,0 +1,9 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Harmony RMI +Bundle-SymbolicName: org.apache.harmony.rmi +Bundle-Version: 1.0.0 +Bundle-ClassPath: . +Eclipse-JREBundle: true +Import-Package: java.lang +Export-Package: java.rmi Index: modules/rmi/src/test/java/org/apache/harmony/tests/rmi/AllTests.java =================================================================== --- modules/rmi/src/test/java/org/apache/harmony/tests/rmi/AllTests.java (revision 0) +++ modules/rmi/src/test/java/org/apache/harmony/tests/rmi/AllTests.java (revision 0) @@ -0,0 +1,36 @@ +/* + * Copyright 2006 The Apache Software Foundation or its licensors, as applicable + * + * Licensed 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 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + +package org.apache.harmony.tests.rmi; + +import junit.framework.Test; +import junit.framework.TestSuite; + +public class AllTests { + + public static void main(String[] args) { + junit.textui.TestRunner.run(AllTests.suite()); + } + + public static Test suite() { + TestSuite suite = new TestSuite( + "Test for org.apache.harmony.tests.rmi"); + //$JUnit-BEGIN$ + //$JUnit-END$ + return suite; + } + +} Index: modules/rmi/src/main/java/java/rmi/RemoteException.java =================================================================== --- modules/rmi/src/main/java/java/rmi/RemoteException.java (revision 0) +++ modules/rmi/src/main/java/java/rmi/RemoteException.java (revision 0) @@ -0,0 +1,34 @@ +/* + * Copyright 2005 The Apache Software Foundation or its licensors, as applicable. + * + * Licensed 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 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package java.rmi; +import java.io.IOException; + +/** + * This is an empty stub containing only empty methods for compilation purposes. + */ +public class RemoteException extends IOException { + + public RemoteException() { + super(); + } + + public RemoteException(String detailMessage) { + super(detailMessage); + } + + +} Index: modules/rmi/make/common/hyproperties.xml =================================================================== --- modules/rmi/make/common/hyproperties.xml (revision 0) +++ modules/rmi/make/common/hyproperties.xml (revision 0) @@ -0,0 +1,44 @@ + + + + + + +
+ + +
+ + + + + +
+ +
+ + + + + + + + + + + + Index: modules/rmi/make/common/build.xml =================================================================== --- modules/rmi/make/common/build.xml (revision 0) +++ modules/rmi/make/common/build.xml (revision 0) @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: modules/rmi/make/build.xml =================================================================== --- modules/rmi/make/build.xml (revision 0) +++ modules/rmi/make/build.xml (revision 0) @@ -0,0 +1,115 @@ + + + + + Build for RMI component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: modules/sql/make/common/build.xml =================================================================== --- modules/sql/make/common/build.xml (revision 389603) +++ modules/sql/make/common/build.xml (working copy) @@ -33,9 +33,6 @@ - - - @@ -64,9 +61,6 @@ - - - @@ -99,9 +93,6 @@ - - - Index: make/patternsets/rmi.txt =================================================================== --- make/patternsets/rmi.txt (revision 0) +++ make/patternsets/rmi.txt (revision 0) @@ -0,0 +1,15 @@ +# Copyright 2006 The Apache Software Foundation or its licensors, as applicable +# +# Licensed 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 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +java/rmi/* Index: make/build-java.xml =================================================================== --- make/build-java.xml (revision 389603) +++ make/build-java.xml (working copy) @@ -196,6 +196,14 @@ excludesfile="${components.patternsets}/kernel.txt" /> + + + + + @@ -255,11 +263,8 @@ + - - - -