Search in sources :

Example 1 with BigTextView

use of com.kyj.fx.voeditor.visual.component.popup.BigTextView in project Gargoyle by callakrsos.

the class SystemLayoutViewController method openBigText.

/**
	 * 사이즈가 큰 텍스트파일을 페이징방식으로 로드한다.
	 *
	 * @작성자 : KYJ
	 * @작성일 : 2016. 2. 22.
	 * @param file
	 */
private void openBigText(File file) {
    CloseableParent<BigTextView> closeableParent = new CloseableParent<BigTextView>(new BigTextView(file)) {

        @Override
        public void close() throws IOException {
            getParent().close();
            LOGGER.debug("Closed BigText...");
        }
    };
    loadNewSystemTab(file.getName(), closeableParent);
}
Also used : BigTextView(com.kyj.fx.voeditor.visual.component.popup.BigTextView)

Aggregations

BigTextView (com.kyj.fx.voeditor.visual.component.popup.BigTextView)1