Fix not able to save after change build target.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1705 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -169,6 +169,12 @@ public class FpdFlash extends IInternalFrame {
|
|||||||
private JPanel jPanelBgFvName = null;
|
private JPanel jPanelBgFvName = null;
|
||||||
private JPanel jPanelBgFvImage = null;
|
private JPanel jPanelBgFvImage = null;
|
||||||
private JPanel jPanelW = null;
|
private JPanel jPanelW = null;
|
||||||
|
private JPanel jPanelFvImageParaN = null;
|
||||||
|
private JPanel jPanelFvImageParaS = null;
|
||||||
|
private JPanel jPanelFvImageParaC = null;
|
||||||
|
private JPanel jPanelFvImageOptsN = null;
|
||||||
|
private JPanel jPanelFvImageOptsS = null;
|
||||||
|
private JPanel jPanelFvImageOptsC = null;
|
||||||
|
|
||||||
public FpdFlash() {
|
public FpdFlash() {
|
||||||
super();
|
super();
|
||||||
@ -554,6 +560,8 @@ public class FpdFlash extends IInternalFrame {
|
|||||||
*/
|
*/
|
||||||
private JPanel getJPanelFvImageC() {
|
private JPanel getJPanelFvImageC() {
|
||||||
if (jPanelFvImageC == null) {
|
if (jPanelFvImageC == null) {
|
||||||
|
GridLayout gridLayout = new GridLayout();
|
||||||
|
gridLayout.setRows(2);
|
||||||
jLabelFvParaName = new JLabel();
|
jLabelFvParaName = new JLabel();
|
||||||
jLabelFvParaName.setPreferredSize(new Dimension(38, 20));
|
jLabelFvParaName.setPreferredSize(new Dimension(38, 20));
|
||||||
jLabelFvParaName.setText("Name");
|
jLabelFvParaName.setText("Name");
|
||||||
@ -563,15 +571,12 @@ public class FpdFlash extends IInternalFrame {
|
|||||||
jLabelFvParaType = new JLabel();
|
jLabelFvParaType = new JLabel();
|
||||||
jLabelFvParaType.setText("Type");
|
jLabelFvParaType.setText("Type");
|
||||||
jLabelFvParaType.setPreferredSize(new java.awt.Dimension(70,20));
|
jLabelFvParaType.setPreferredSize(new java.awt.Dimension(70,20));
|
||||||
FlowLayout flowLayout3 = new FlowLayout();
|
|
||||||
flowLayout3.setAlignment(java.awt.FlowLayout.LEFT);
|
|
||||||
flowLayout3.setHgap(5);
|
|
||||||
jPanelFvImageC = new JPanel();
|
jPanelFvImageC = new JPanel();
|
||||||
jPanelFvImageC.setLayout(flowLayout3);
|
jPanelFvImageC.setLayout(gridLayout);
|
||||||
jPanelFvImageC.add(getJPanelFvImagePara(), null);
|
jPanelFvImageC.add(getJPanelFvImagePara(), null);
|
||||||
|
|
||||||
jPanelFvImageC.add(getJPanelFvImageOpts(), null);
|
jPanelFvImageC.add(getJPanelFvImageOpts(), null);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
return jPanelFvImageC;
|
return jPanelFvImageC;
|
||||||
}
|
}
|
||||||
@ -791,8 +796,6 @@ public class FpdFlash extends IInternalFrame {
|
|||||||
|
|
||||||
if (jPanelFvImageOpts == null) {
|
if (jPanelFvImageOpts == null) {
|
||||||
//ToDo add ButtonGroup for RadioButtons
|
//ToDo add ButtonGroup for RadioButtons
|
||||||
FlowLayout flowLayout5 = new FlowLayout();
|
|
||||||
flowLayout5.setAlignment(java.awt.FlowLayout.LEFT);
|
|
||||||
jLabelOptions = new JLabel();
|
jLabelOptions = new JLabel();
|
||||||
jLabelOptions.setText("Attribute");
|
jLabelOptions.setText("Attribute");
|
||||||
jLabelFvImageOptValue = new JLabel();
|
jLabelFvImageOptValue = new JLabel();
|
||||||
@ -804,23 +807,16 @@ public class FpdFlash extends IInternalFrame {
|
|||||||
jLabelFvImageOptName.setText("Name");
|
jLabelFvImageOptName.setText("Name");
|
||||||
jLabelFvImageOptName.setPreferredSize(new Dimension(38, 20));
|
jLabelFvImageOptName.setPreferredSize(new Dimension(38, 20));
|
||||||
jPanelFvImageOpts = new JPanel();
|
jPanelFvImageOpts = new JPanel();
|
||||||
jPanelFvImageOpts.setLayout(flowLayout5);
|
jPanelFvImageOpts.setLayout(new BorderLayout());
|
||||||
jPanelFvImageOpts.setPreferredSize(new java.awt.Dimension(450,130));
|
jPanelFvImageOpts.setPreferredSize(new java.awt.Dimension(450,130));
|
||||||
|
|
||||||
|
|
||||||
jPanelFvImageOpts.setBorder(javax.swing.BorderFactory.createEtchedBorder(javax.swing.border.EtchedBorder.LOWERED));
|
jPanelFvImageOpts.setBorder(javax.swing.BorderFactory.createEtchedBorder(javax.swing.border.EtchedBorder.LOWERED));
|
||||||
jPanelFvImageOpts.add(jLabelOptions, null);
|
|
||||||
jPanelFvImageOpts.add(jLabelFvImageOptName, null);
|
|
||||||
jPanelFvImageOpts.add(getJTextFieldFvImageOptName(), null);
|
|
||||||
jPanelFvImageOpts.add(jLabelFvImageOptValue, null);
|
|
||||||
jPanelFvImageOpts.add(getJTextFieldFvImageOptValue(), null);
|
|
||||||
jPanelFvImageOpts.add(getJScrollPane(), null);
|
|
||||||
jPanelFvImageOpts.add(getJPanelFvImageOptsButtonGroup(), null);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
jPanelFvImageOpts.add(getJPanelFvImageOptsN(), java.awt.BorderLayout.NORTH);
|
||||||
|
jPanelFvImageOpts.add(getJPanelFvImageOptsS(), java.awt.BorderLayout.SOUTH);
|
||||||
|
jPanelFvImageOpts.add(getJPanelFvImageOptsC(), java.awt.BorderLayout.CENTER);
|
||||||
|
|
||||||
}
|
}
|
||||||
return jPanelFvImageOpts;
|
return jPanelFvImageOpts;
|
||||||
}
|
}
|
||||||
@ -990,22 +986,20 @@ public class FpdFlash extends IInternalFrame {
|
|||||||
*/
|
*/
|
||||||
private JPanel getJPanelFvImagePara() {
|
private JPanel getJPanelFvImagePara() {
|
||||||
if (jPanelFvImagePara == null) {
|
if (jPanelFvImagePara == null) {
|
||||||
FlowLayout flowLayout6 = new FlowLayout();
|
|
||||||
flowLayout6.setAlignment(java.awt.FlowLayout.LEFT);
|
|
||||||
StarLabel starLabel = new StarLabel();
|
StarLabel starLabel = new StarLabel();
|
||||||
starLabel.setVisible(false);
|
starLabel.setVisible(false);
|
||||||
jPanelFvImagePara = new JPanel();
|
jPanelFvImagePara = new JPanel();
|
||||||
jPanelFvImagePara.setLayout(flowLayout6);
|
jPanelFvImagePara.setLayout(new BorderLayout());
|
||||||
jPanelFvImagePara.setPreferredSize(new java.awt.Dimension(450,140));
|
jPanelFvImagePara.setPreferredSize(new java.awt.Dimension(450,140));
|
||||||
jPanelFvImagePara.setBorder(javax.swing.BorderFactory.createEtchedBorder(javax.swing.border.EtchedBorder.RAISED));
|
jPanelFvImagePara.setBorder(javax.swing.BorderFactory.createEtchedBorder(javax.swing.border.EtchedBorder.RAISED));
|
||||||
jPanelFvImagePara.add(new StarLabel(), null);
|
|
||||||
jPanelFvImagePara.add(jLabelFvImageNames, null);
|
jPanelFvImagePara.add(getJPanelFvImageParaN(), java.awt.BorderLayout.NORTH);
|
||||||
jPanelFvImagePara.add(jLabelFvParaName, null);
|
jPanelFvImagePara.add(getJPanelFvImageParaS(), java.awt.BorderLayout.SOUTH);
|
||||||
jPanelFvImagePara.add(getJTextFieldFvParaName(), null);
|
jPanelFvImagePara.add(getJPanelFvImageParaC(), java.awt.BorderLayout.CENTER);
|
||||||
jPanelFvImagePara.add(getJScrollPaneFvImageNames(), null);
|
|
||||||
jPanelFvImagePara.add(getJPanelBgFvName(), null);
|
//
|
||||||
jPanelFvImagePara.add(jLabelFvParaType, null);
|
//
|
||||||
jPanelFvImagePara.add(getJComboBoxFvParaType(), null);
|
//
|
||||||
}
|
}
|
||||||
return jPanelFvImagePara;
|
return jPanelFvImagePara;
|
||||||
}
|
}
|
||||||
@ -2072,6 +2066,99 @@ public class FpdFlash extends IInternalFrame {
|
|||||||
return jPanelW;
|
return jPanelW;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method initializes jPanelFvImageParaN
|
||||||
|
*
|
||||||
|
* @return javax.swing.JPanel
|
||||||
|
*/
|
||||||
|
private JPanel getJPanelFvImageParaN() {
|
||||||
|
if (jPanelFvImageParaN == null) {
|
||||||
|
FlowLayout flowLayout3 = new FlowLayout();
|
||||||
|
flowLayout3.setAlignment(java.awt.FlowLayout.CENTER);
|
||||||
|
jPanelFvImageParaN = new JPanel();
|
||||||
|
jPanelFvImageParaN.setLayout(flowLayout3);
|
||||||
|
jPanelFvImageParaN.add(new StarLabel(), null);
|
||||||
|
jPanelFvImageParaN.add(jLabelFvImageNames, null);
|
||||||
|
jPanelFvImageParaN.add(jLabelFvParaName, null);
|
||||||
|
jPanelFvImageParaN.add(getJTextFieldFvParaName(), null);
|
||||||
|
}
|
||||||
|
return jPanelFvImageParaN;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method initializes jPanelFvImageParaS
|
||||||
|
*
|
||||||
|
* @return javax.swing.JPanel
|
||||||
|
*/
|
||||||
|
private JPanel getJPanelFvImageParaS() {
|
||||||
|
if (jPanelFvImageParaS == null) {
|
||||||
|
FlowLayout flowLayout6 = new FlowLayout();
|
||||||
|
flowLayout6.setAlignment(java.awt.FlowLayout.CENTER);
|
||||||
|
jPanelFvImageParaS = new JPanel();
|
||||||
|
jPanelFvImageParaS.setLayout(flowLayout6);
|
||||||
|
jPanelFvImageParaS.add(jLabelFvParaType, null);
|
||||||
|
jPanelFvImageParaS.add(getJComboBoxFvParaType(), null);
|
||||||
|
}
|
||||||
|
return jPanelFvImageParaS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method initializes jPanelFvImageParaC
|
||||||
|
*
|
||||||
|
* @return javax.swing.JPanel
|
||||||
|
*/
|
||||||
|
private JPanel getJPanelFvImageParaC() {
|
||||||
|
if (jPanelFvImageParaC == null) {
|
||||||
|
jPanelFvImageParaC = new JPanel();
|
||||||
|
jPanelFvImageParaC.add(getJScrollPaneFvImageNames(), null);
|
||||||
|
jPanelFvImageParaC.add(getJPanelBgFvName(), null);
|
||||||
|
}
|
||||||
|
return jPanelFvImageParaC;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method initializes jPanelFvImageOptsN
|
||||||
|
*
|
||||||
|
* @return javax.swing.JPanel
|
||||||
|
*/
|
||||||
|
private JPanel getJPanelFvImageOptsN() {
|
||||||
|
if (jPanelFvImageOptsN == null) {
|
||||||
|
jPanelFvImageOptsN = new JPanel();
|
||||||
|
jPanelFvImageOptsN.add(jLabelOptions, null);
|
||||||
|
jPanelFvImageOptsN.add(jLabelFvImageOptName, null);
|
||||||
|
jPanelFvImageOptsN.add(getJTextFieldFvImageOptName(), null);
|
||||||
|
jPanelFvImageOptsN.add(jLabelFvImageOptValue, null);
|
||||||
|
jPanelFvImageOptsN.add(getJTextFieldFvImageOptValue(), null);
|
||||||
|
}
|
||||||
|
return jPanelFvImageOptsN;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method initializes jPanelFvImageOptsS
|
||||||
|
*
|
||||||
|
* @return javax.swing.JPanel
|
||||||
|
*/
|
||||||
|
private JPanel getJPanelFvImageOptsS() {
|
||||||
|
if (jPanelFvImageOptsS == null) {
|
||||||
|
jPanelFvImageOptsS = new JPanel();
|
||||||
|
}
|
||||||
|
return jPanelFvImageOptsS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method initializes jPanelFvImageOptsC
|
||||||
|
*
|
||||||
|
* @return javax.swing.JPanel
|
||||||
|
*/
|
||||||
|
private JPanel getJPanelFvImageOptsC() {
|
||||||
|
if (jPanelFvImageOptsC == null) {
|
||||||
|
jPanelFvImageOptsC = new JPanel();
|
||||||
|
jPanelFvImageOptsC.add(getJScrollPane(), null);
|
||||||
|
jPanelFvImageOptsC.add(getJPanelFvImageOptsButtonGroup(), null);
|
||||||
|
}
|
||||||
|
return jPanelFvImageOptsC;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param args
|
* @param args
|
||||||
*/
|
*/
|
||||||
|
@ -185,6 +185,9 @@ public class FpdModuleSA extends JDialog implements ActionListener {
|
|||||||
for (int i = 0; i < saa.length; ++i) {
|
for (int i = 0; i < saa.length; ++i) {
|
||||||
ModuleIdentification mi = WorkspaceProfile.getModuleId(saa[i][1] + " " + saa[i][2] + " " + saa[i][3] + " " + saa[i][4]);
|
ModuleIdentification mi = WorkspaceProfile.getModuleId(saa[i][1] + " " + saa[i][2] + " " + saa[i][3] + " " + saa[i][4]);
|
||||||
if (mi != null) {
|
if (mi != null) {
|
||||||
|
//
|
||||||
|
// ToDo: verify this instance first.
|
||||||
|
//
|
||||||
saa[i][0] = mi.getName();
|
saa[i][0] = mi.getName();
|
||||||
saa[i][2] = mi.getVersion();
|
saa[i][2] = mi.getVersion();
|
||||||
saa[i][4] = mi.getPackageId().getVersion();
|
saa[i][4] = mi.getPackageId().getVersion();
|
||||||
@ -267,7 +270,7 @@ public class FpdModuleSA extends JDialog implements ActionListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// find potential instances in all dependency pkgs for classes still in classConsumed.
|
// find potential instances in all pkgs for classes still in classConsumed.
|
||||||
//
|
//
|
||||||
if (classInstanceMap == null){
|
if (classInstanceMap == null){
|
||||||
classInstanceMap = new HashMap<String, ArrayList<String>>();
|
classInstanceMap = new HashMap<String, ArrayList<String>>();
|
||||||
|
@ -704,6 +704,8 @@ public class FpdPlatformDefs extends IInternalFrame {
|
|||||||
for (int i = 0; i < jTableBuildTargets.getRowCount(); ++i) {
|
for (int i = 0; i < jTableBuildTargets.getRowCount(); ++i) {
|
||||||
v.add(buildTargetTableModel.getValueAt(i, 0));
|
v.add(buildTargetTableModel.getValueAt(i, 0));
|
||||||
}
|
}
|
||||||
|
docConsole.setSaved(false);
|
||||||
|
ffc.setPlatformDefsBuildTargets(v);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user