|
|
@ -1105,7 +1105,17 @@ public class DesignerFrame extends JFrame implements JTemplateActionListener, Ta |
|
|
|
int index = HistoryTemplateListCache.getInstance().contains(tplFile); |
|
|
|
int index = HistoryTemplateListCache.getInstance().contains(tplFile); |
|
|
|
if (index != -1) { |
|
|
|
if (index != -1) { |
|
|
|
JTemplate jt = HistoryTemplateListCache.getInstance().getHistoryList().get(index); |
|
|
|
JTemplate jt = HistoryTemplateListCache.getInstance().getHistoryList().get(index); |
|
|
|
if (!(jt instanceof JVirtualTemplate)) { |
|
|
|
if (jt instanceof JVirtualTemplate) { |
|
|
|
|
|
|
|
// 如果是JVirtualTemplate 创建真实JTemplate
|
|
|
|
|
|
|
|
JTemplate realJTemplate = JTemplateFactory.createJTemplate(tplFile); |
|
|
|
|
|
|
|
if (realJTemplate == null) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// 由JVirtualTemplate激活真实JTemplate 本质在historyList中进行替换
|
|
|
|
|
|
|
|
// 同时 realJTemplate被管理起来 不需要主动释放 关闭时会自动释放
|
|
|
|
|
|
|
|
jt.activeJTemplate(index, realJTemplate); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} else { |
|
|
|
jt.activeOldJTemplate(); |
|
|
|
jt.activeOldJTemplate(); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|