HomeSort by relevance Sort by last modified time
    Searched full:managedform (Results 1 - 24 of 24) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuTreePage.java 54 * @param managedForm the form hosted in this page.
57 protected void createFormContent(IManagedForm managedForm) {
58 super.createFormContent(managedForm);
59 ScrolledForm form = managedForm.getForm();
69 block.createContent(managedForm);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/
OtherXmlTreePage.java 54 * @param managedForm the form hosted in this page.
57 protected void createFormContent(IManagedForm managedForm) {
58 super.createFormContent(managedForm);
59 ScrolledForm form = managedForm.getForm();
69 block.createContent(managedForm);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewPage.java 75 * @param managedForm the form hosted in this page.
78 protected void createFormContent(IManagedForm managedForm) {
79 super.createFormContent(managedForm);
80 ScrolledForm form = managedForm.getForm();
85 FormToolkit toolkit = managedForm.getToolkit();
92 managedForm.addPart(mOverviewPart);
94 newManifestExtrasPart(managedForm);
98 managedForm.addPart(exportPart);
102 managedForm.addPart(mOverviewLinkPart);
105 private void newManifestExtrasPart(IManagedForm managedForm) {
    [all...]
ApplicationAttributesPart.java 45 /** ManagedForm needed to create the UI controls */
74 * @param managedForm The owner managed form
77 protected void createFormControls(final IManagedForm managedForm) {
78 mManagedForm = managedForm;
79 setTable(createTableLayout(managedForm.getToolkit(), 4 /* numColumns */));
97 protected void createUiAttributes(IManagedForm managedForm) {
99 if (table == null || managedForm == null) {
129 ui_attr.createUiControl(table, managedForm);
141 createLabel(table, managedForm.getToolkit(),
ApplicationPage.java 73 * @param managedForm the form hosted in this page.
76 protected void createFormContent(IManagedForm managedForm) {
77 super.createFormContent(managedForm);
78 ScrolledForm form = managedForm.getForm();
85 FormToolkit toolkit = managedForm.getToolkit();
91 managedForm.addPart(mTooglePart);
94 managedForm.addPart(mAttrPart);
101 mTreeBlock.createContent(managedForm);
InstrumentationPage.java 60 * @param managedForm the form hosted in this page.
63 protected void createFormContent(IManagedForm managedForm) {
64 super.createFormContent(managedForm);
65 ScrolledForm form = managedForm.getForm();
84 mTreeBlock.createContent(managedForm);
PermissionPage.java 64 * @param managedForm the form hosted in this page.
67 protected void createFormContent(IManagedForm managedForm) {
68 super.createFormContent(managedForm);
69 ScrolledForm form = managedForm.getForm();
90 mTreeBlock.createContent(managedForm);
OverviewInfoPart.java 72 protected void createFormControls(final IManagedForm managedForm) {
73 mManagedForm = managedForm;
74 super.createFormControls(managedForm);
ApplicationToggle.java 94 * @param managedForm The owner managed form
97 protected void createFormControls(IManagedForm managedForm) {
98 FormToolkit toolkit = managedForm.getToolkit();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportPropertiesPage.java 56 * @param managedForm the form hosted in this page.
59 protected void createFormContent(IManagedForm managedForm) {
60 super.createFormContent(managedForm);
61 ScrolledForm form = managedForm.getForm();
66 FormToolkit toolkit = managedForm.getToolkit();
72 managedForm.addPart(mFieldsPart);
76 managedForm.addPart(mLinksPart);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 129 * @param managedForm The owner managed form
131 protected void createFormControls(IManagedForm managedForm) {
132 setTable(createTableLayout(managedForm.getToolkit(), 2 /* numColumns */));
134 createUiAttributes(managedForm);
154 * @param managedForm The owner managed form
156 protected void createUiAttributes(IManagedForm managedForm) {
158 if (table == null || managedForm == null) {
167 fillTable(table, managedForm);
183 * @param managedForm The managed form for new controls.
185 protected void fillTable(Composite table, IManagedForm managedForm) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesTreePage.java 73 * @param managedForm the form hosted in this page.
76 protected void createFormContent(IManagedForm managedForm) {
77 super.createFormContent(managedForm);
78 ScrolledForm form = managedForm.getForm();
106 block.createContent(managedForm);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiTextAttributeNode.java 63 public void createUiControl(Composite parent, IManagedForm managedForm) {
64 setManagedForm(managedForm);
66 Text text = SectionHelper.createLabelAndText(parent, managedForm.getToolkit(),
87 protected void setManagedForm(IManagedForm managedForm) {
88 mManagedForm = managedForm;
UiSeparatorAttributeNode.java 73 * @param managedForm The managed form owning this part.
76 public void createUiControl(Composite parent, IManagedForm managedForm) {
77 FormToolkit toolkit = managedForm.getToolkit();
UiAttributeNode.java 115 * @param managedForm The managed form owning this part.
117 public abstract void createUiControl(Composite parent, IManagedForm managedForm);
UiListAttributeNode.java 66 public final void createUiControl(final Composite parent, IManagedForm managedForm) {
67 FormToolkit toolkit = managedForm.getToolkit();
UiFlagAttributeNode.java 82 public void createUiControl(Composite parent, IManagedForm managedForm) {
83 setManagedForm(managedForm);
84 FormToolkit toolkit = managedForm.getToolkit();
UiResourceAttributeNode.java 108 public void createUiControl(final Composite parent, IManagedForm managedForm) {
109 setManagedForm(managedForm);
110 FormToolkit toolkit = managedForm.getToolkit();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 224 * @param managedForm The managed form
227 final IManagedForm managedForm,
260 FormToolkit toolkit = managedForm.getToolkit();
324 ui_attr.createUiControl(table, managedForm);
351 updateUnknownAttributesSection(uiNode, unknownTable, managedForm,
366 updateUnknownAttributesSection(ui_node, unknownTable, managedForm, reference);
434 final Composite unknownTable, final IManagedForm managedForm,
469 ui_attr.createUiControl(unknownTable, managedForm);
UiTreeBlock.java 198 protected void createMasterPart(final IManagedForm managedForm, Composite parent) {
199 FormToolkit toolkit = managedForm.getToolkit();
201 mManagedForm = managedForm;
211 Tree tree = createTreeViewer(toolkit, grid, managedForm);
245 final IManagedForm managedForm) {
266 managedForm.fireSelectionChanged(mMasterPart, event.getSelection());
773 protected void createToolBarActions(IManagedForm managedForm) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestPkgAttrNode.java 92 public void createUiControl(final Composite parent, final IManagedForm managedForm) {
93 setManagedForm(managedForm);
94 FormToolkit toolkit = managedForm.getToolkit();
142 * Adds a validator to the text field that calls managedForm.getMessageManager().
UiPackageAttributeNode.java 92 public void createUiControl(final Composite parent, final IManagedForm managedForm) {
93 setManagedForm(managedForm);
94 FormToolkit toolkit = managedForm.getToolkit();
142 * Adds a validator to the text field that calls managedForm.getMessageManager().
UiClassAttributeNode.java 245 public void createUiControl(final Composite parent, IManagedForm managedForm) {
246 setManagedForm(managedForm);
247 FormToolkit toolkit = managedForm.getToolkit();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 

Completed in 565 milliseconds