Search in sources :

Example 1 with FXMLTextView

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

Example 2 with FXMLTextView

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

Aggregations

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