use of com.kyj.fx.voeditor.visual.component.popup.FXMLTextView 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;
}
}
use of com.kyj.fx.voeditor.visual.component.popup.FXMLTextView in project Gargoyle by callakrsos.
the class SystemLayoutViewController method openFXML.
/**
* FXML 파일을 연다.
*
* @작성자 : KYJ
* @작성일 : 2016. 6. 16.
* @param file
* @throws IOException
*/
private void openFXML(File file) throws IOException {
try {
FXMLTextView fxmlTextView = new FXMLTextView(file, false);
// fxmlTextView.setEditable(tr);
loadNewSystemTab(file.getName(), fxmlTextView);
} catch (IOException e1) {
LOGGER.debug(ValueUtil.toString(e1));
throw e1;
}
}
Aggregations