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:
committed by
The Android Open Source Project
parent
38d88bfb49
commit
268c824eb1
@@ -68,7 +68,7 @@ public class AndroidPropertyPage extends PropertyPage implements IWorkbenchPrope
|
|||||||
top.setLayout(new GridLayout(1, false));
|
top.setLayout(new GridLayout(1, false));
|
||||||
|
|
||||||
Label l = new Label(top, SWT.NONE);
|
Label l = new Label(top, SWT.NONE);
|
||||||
l.setText("Project Target");
|
l.setText("Project Build Target");
|
||||||
|
|
||||||
mSelector = new SdkTargetSelector(top, targets);
|
mSelector = new SdkTargetSelector(top, targets);
|
||||||
|
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ public final class AvdSelector {
|
|||||||
final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
|
final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
|
||||||
column1.setText("Target Name");
|
column1.setText("Target Name");
|
||||||
final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
|
final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
|
||||||
column2.setText("SDK");
|
column2.setText("Platform");
|
||||||
final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
|
final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
|
||||||
column3.setText("API Level");
|
column3.setText("API Level");
|
||||||
|
|
||||||
|
|||||||
@@ -35,8 +35,6 @@ import org.eclipse.swt.widgets.Table;
|
|||||||
import org.eclipse.swt.widgets.TableColumn;
|
import org.eclipse.swt.widgets.TableColumn;
|
||||||
import org.eclipse.swt.widgets.TableItem;
|
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.
|
* 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
|
// create the table columns
|
||||||
final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
|
final TableColumn column0 = new TableColumn(mTable, SWT.NONE);
|
||||||
column0.setText("SDK Target");
|
column0.setText("Target Name");
|
||||||
final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
|
final TableColumn column1 = new TableColumn(mTable, SWT.NONE);
|
||||||
column1.setText("Vendor");
|
column1.setText("Vendor");
|
||||||
final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
|
final TableColumn column2 = new TableColumn(mTable, SWT.NONE);
|
||||||
column2.setText("Version");
|
column2.setText("Platform");
|
||||||
final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
|
final TableColumn column3 = new TableColumn(mTable, SWT.NONE);
|
||||||
column3.setText("API Level");
|
column3.setText("API Level");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user