1. Fix EDKT202 "Some externs do not have attribute SupArchList"

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1422 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
hche10x 2006-09-01 06:23:58 +00:00
parent 5ad6d22a16
commit c8b748bff3
1 changed files with 7 additions and 0 deletions

View File

@ -403,9 +403,16 @@ public class ExternsDlg extends IDialog implements ItemListener {
if (jComboBoxType.getSelectedItem().toString().equals(EnumerationData.EXTERNS_PCD_IS_DRIVER)) {
this.jComboBoxPcdIsDriver.setVisible(true);
this.jTextFieldC_Name.setVisible(false);
this.jLabelArch.setEnabled(false);
this.jArchCheckBox.setAllItemsEnabled(false);
} else if (jComboBoxType.getSelectedItem().toString().equals(EnumerationData.EXTERNS_SPECIFICATION)) {
this.jLabelArch.setEnabled(false);
this.jArchCheckBox.setAllItemsEnabled(false);
} else {
this.jComboBoxPcdIsDriver.setVisible(false);
this.jTextFieldC_Name.setVisible(true);
this.jLabelArch.setEnabled(true);
this.jArchCheckBox.setAllItemsEnabled(true);
}
}
}