Search in sources :

Example 1 with XMLTextView

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;
    }
}
Also used : XMLTextView(com.kyj.fx.voeditor.visual.component.popup.XMLTextView) FXMLTextView(com.kyj.fx.voeditor.visual.component.popup.FXMLTextView) IOException(java.io.IOException)

Aggregations

FXMLTextView (com.kyj.fx.voeditor.visual.component.popup.FXMLTextView)1 XMLTextView (com.kyj.fx.voeditor.visual.component.popup.XMLTextView)1 IOException (java.io.IOException)1