以下のようなソースは変換できません。
//ex1 状況によりどちらが採用されるか不明の場合
boolean flag;
……
if(flag)
this.addPanel("MyJFLEntryPanel1","MyJFLEntryPanel1",
JFCPanelLoader.INIT_CREATION,
JFCPanelLoader.PERMANENT_INSTANCE);
else
this.addPanel("MyJFLEntryPanel2","MyJFLEntryPanel2",
JFCPanelLoader.INIT_CREATION,
JFCPanelLoader.PERMANENT_INSTANCE);
//ex2 状況によりパラメタが変化する場合
boolean flag;
……
this.addPanel("MyJFLEntryPanel1","MyJFLEntryPanel1",
flag?JFCPanelLoader.AAAAAA:JFCPanelLoader.BBBBBB,
JFCPanelLoader.PERMANENT_INSTANCE);
//ex3 定数ではなく変数が使われている場合
String s;
s="ABCDE";
……
this.addPanel(s,"MyJFLEntryPanel1",
JFCPanelLoader.INIT_CREATION,
JFCPanelLoader.PERMANENT_INSTANCE);
//ex4 addPanelメソッドのパラメタが、JFCPanelLoader指定の場合
JFCPanelLoader myPanelLoader;
……
addPanel(myPanelLoader);