blob: 0ed9ed4b379178a615a3759d5490a1b81e8cf10a [file] [log] [blame]
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Eclipse Public License, Version 1.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.eclipse.org/org/documents/epl-v10.php
*
* 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 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;
import org.eclipse.core.runtime.Path;
/**
* Stub class for project creation page.
* <p/>
* Returns canned responses for creating a sample project.
*/
public class StubProjectCreationPage extends NewProjectCreationPage {
private final String mProjectName;
private final String mLocation;
private final IAndroidTarget mTarget;
public StubProjectCreationPage(String projectName, String projectLocation, IAndroidTarget target) {
super();
this.mProjectName = projectName;
this.mLocation = projectLocation;
this.mTarget = target;
// don't set test project info
setTestInfo(null);
}
@Override
public IMainInfo getMainInfo() {
return new IMainInfo() {
public String getProjectName() {
return mProjectName;
}
public String getPackageName() {
return "com.android.samples";
}
public String getActivityName() {
return mProjectName;
}
public String getApplicationName() {
return mProjectName;
}
public boolean isNewProject() {
return false;
}
public String getSourceFolder() {
return "src";
}
public IPath getLocationPath() {
return new Path(mLocation);
}
public String getMinSdkVersion() {
return null;
}
public IAndroidTarget getSdkTarget() {
return mTarget;
}
public boolean isCreateActivity() {
return false;
}
public boolean useDefaultLocation() {
return false;
}
};
}
}