am 9ed226a: ADT: Move more packages into internal.

Merge commit '9ed226af6a2946146a989f3c066150a8a98e4a1d'

* commit '9ed226af6a2946146a989f3c066150a8a98e4a1d':
  ADT: Move more packages into internal.
This commit is contained in:
Xavier Ducrohet
2009-05-13 17:19:08 -07:00
committed by The Android Open Source Project
132 changed files with 321 additions and 313 deletions

View File

@@ -15,6 +15,7 @@
*/
package com.android.ide.eclipse.adt.wizards.newproject;
import com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreationPage;
import com.android.sdklib.IAndroidTarget;
import org.eclipse.core.runtime.IPath;

View File

@@ -15,6 +15,9 @@
*/
package com.android.ide.eclipse.adt.wizards.newproject;
import com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectCreationPage;
import com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectWizard;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.wizard.IWizardContainer;

View File

@@ -14,9 +14,10 @@
* limitations under the License.
*/
package com.android.ide.eclipse.common.project;
package com.android.ide.eclipse.adt.internal.project;
import com.android.ide.eclipse.common.project.AndroidManifestParser.Activity;
import com.android.ide.eclipse.adt.internal.project.AndroidManifestParser;
import com.android.ide.eclipse.adt.internal.project.AndroidManifestParser.Activity;
import com.android.ide.eclipse.tests.AdtTestData;
import junit.framework.TestCase;

View File

@@ -14,11 +14,14 @@
* limitations under the License.
*/
package com.android.ide.eclipse.common.resources;
package com.android.ide.eclipse.adt.internal.resources;
import com.android.ide.eclipse.common.resources.DeclareStyleableInfo.AttributeInfo;
import com.android.ide.eclipse.common.resources.DeclareStyleableInfo.AttributeInfo.Format;
import com.android.ide.eclipse.adt.internal.resources.AttrsXmlParser;
import com.android.ide.eclipse.adt.internal.resources.DeclareStyleableInfo;
import com.android.ide.eclipse.adt.internal.resources.ViewClassInfo;
import com.android.ide.eclipse.adt.internal.resources.DeclareStyleableInfo.AttributeInfo;
import com.android.ide.eclipse.adt.internal.resources.DeclareStyleableInfo.AttributeInfo.Format;
import com.android.ide.eclipse.tests.AdtTestData;
import org.w3c.dom.Document;

View File

@@ -14,9 +14,10 @@
* limitations under the License.
*/
package com.android.ide.eclipse.adt.sdk;
package com.android.ide.eclipse.adt.internal.sdk;
import com.android.ide.eclipse.adt.sdk.IAndroidClassLoader.IClassDescriptor;
import com.android.ide.eclipse.adt.internal.sdk.AndroidJarLoader;
import com.android.ide.eclipse.adt.internal.sdk.IAndroidClassLoader.IClassDescriptor;
import com.android.ide.eclipse.tests.AdtTestData;
import java.lang.reflect.Field;

View File

@@ -14,13 +14,16 @@
* limitations under the License.
*/
package com.android.ide.eclipse.adt.sdk;
package com.android.ide.eclipse.adt.internal.sdk;
import com.android.ide.eclipse.adt.sdk.AndroidJarLoader.ClassWrapper;
import com.android.ide.eclipse.adt.sdk.IAndroidClassLoader.IClassDescriptor;
import com.android.ide.eclipse.common.resources.AttrsXmlParser;
import com.android.ide.eclipse.common.resources.ViewClassInfo;
import com.android.ide.eclipse.common.resources.ViewClassInfo.LayoutParamsInfo;
import com.android.ide.eclipse.adt.internal.resources.AttrsXmlParser;
import com.android.ide.eclipse.adt.internal.resources.ViewClassInfo;
import com.android.ide.eclipse.adt.internal.resources.ViewClassInfo.LayoutParamsInfo;
import com.android.ide.eclipse.adt.internal.sdk.AndroidJarLoader;
import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetParser;
import com.android.ide.eclipse.adt.internal.sdk.LayoutParamsParser;
import com.android.ide.eclipse.adt.internal.sdk.AndroidJarLoader.ClassWrapper;
import com.android.ide.eclipse.adt.internal.sdk.IAndroidClassLoader.IClassDescriptor;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;