use of com.kyj.fx.voeditor.visual.component.popup.XMLTextView in project Gargoyle by callakrsos.
the class SystemLayoutViewController method openXML.
/********************************
* 작성일 : 2016. 8. 19. 작성자 : KYJ
*
* XML 파일을 연다.
*
* @param file
* @throws IOException
********************************/
private void openXML(File file) throws IOException {
try {
XMLTextView fxmlTextView = new XMLTextView(file, false);
// fxmlTextView.setEditable(tr);
loadNewSystemTab(file.getName(), fxmlTextView);
} catch (IOException e1) {
LOGGER.debug(ValueUtil.toString(e1));
throw e1;
}
}
Aggregations