AI 146736: am: CL 146674 "Target" nomenclature fixes

Original author: xav
  Merged from: //branches/cupcake/...

Automated import of CL 146736
This commit is contained in:
Xavier Ducrohet
2009-04-17 11:08:12 -07:00
committed by The Android Open Source Project
parent 38d88bfb49
commit 268c824eb1
3 changed files with 4 additions and 6 deletions

View File

@@ -68,7 +68,7 @@ public class AndroidPropertyPage extends PropertyPage implements IWorkbenchPrope
top.setLayout(new GridLayout(1, false));
Label l = new Label(top, SWT.NONE);
l.setText("Project Target");
l.setText("Project Build Target");
mSelector = new SdkTargetSelector(top, targets);

View File

@@ -89,7 +89,7 @@ public final class AvdSelector {
final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
column1.setText("Target Name");
final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
column2.setText("SDK");
column2.setText("Platform");
final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
column3.setText("API Level");

View File

@@ -35,8 +35,6 @@ import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
import org.eclipse.swt.widgets.TableItem;
import java.util.ArrayList;
/**
* The SDK target selector is a table that is added to the given parent composite.
@@ -102,11 +100,11 @@ public class SdkTargetSelector {
// create the table columns
final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
column0.setText("SDK Target");
column0.setText("Target Name");
final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
column1.setText("Vendor");
final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
column2.setText("Version");
column2.setText("Platform");
final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
column3.setText("API Level");