Move some classes that have non ready APIs to internal packages

- com.android.sdklib.avd -> com.android.sdklib.internal.avd
- com.android.sdklib.project -> com.android.sdklib.internal.project
This commit is contained in:
Xavier Ducrohet
2009-05-13 14:53:49 -07:00
parent 5abeea833d
commit 68d017af64
10 changed files with 21 additions and 21 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package com.android.sdklib.avd;
package com.android.sdklib.internal.avd;
import com.android.prefs.AndroidLocation;
import com.android.prefs.AndroidLocation.AndroidLocationException;
@@ -22,7 +22,7 @@ import com.android.sdklib.IAndroidTarget;
import com.android.sdklib.ISdkLog;
import com.android.sdklib.SdkConstants;
import com.android.sdklib.SdkManager;
import com.android.sdklib.avd.AvdManager.AvdInfo.AvdStatus;
import com.android.sdklib.internal.avd.AvdManager.AvdInfo.AvdStatus;
import java.io.BufferedReader;
import java.io.File;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package com.android.sdklib.avd;
package com.android.sdklib.internal.avd;
import com.android.sdklib.ISdkLog;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package com.android.sdklib.project;
package com.android.sdklib.internal.project;
import java.util.HashMap;
import java.util.Map;

View File

@@ -14,12 +14,12 @@
* limitations under the License.
*/
package com.android.sdklib.project;
package com.android.sdklib.internal.project;
import com.android.sdklib.IAndroidTarget;
import com.android.sdklib.ISdkLog;
import com.android.sdklib.SdkConstants;
import com.android.sdklib.project.ProjectProperties.PropertyType;
import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package com.android.sdklib.project;
package com.android.sdklib.internal.project;
import com.android.sdklib.IAndroidTarget;
import com.android.sdklib.SdkManager;