Search in sources :

Example 1 with SVNTreeView

use of com.kyj.fx.voeditor.visual.component.scm.SVNTreeView in project Gargoyle by callakrsos.

the class SvnViewExam method start.

/***********************************************************************************/
/* 이벤트 구현 */
@Override
public void start(Stage primaryStage) throws Exception {
    Properties prop = new Properties();
    prop.put(SVNTreeView.SVN_USER_ID, "callakrsos");
    prop.put(SVNTreeView.SVN_USER_PASS, "mFn+QPl+TW8=");
    prop.put(SVNTreeView.SVN_URL, "https://dev.naver.com/svn/javafxvoeditor/trunk");
    prop.put(SVNTreeView.SVN_PATH, ConfigResourceLoader.getInstance().get(SVNTreeView.SVN_PATH_WINDOW));
    BorderPane borderPane = new BorderPane(new SVNTreeView());
    primaryStage.setScene(new Scene(borderPane));
    primaryStage.show();
}
Also used : BorderPane(javafx.scene.layout.BorderPane) SVNTreeView(com.kyj.fx.voeditor.visual.component.scm.SVNTreeView) Properties(java.util.Properties) Scene(javafx.scene.Scene)

Aggregations

SVNTreeView (com.kyj.fx.voeditor.visual.component.scm.SVNTreeView)1 Properties (java.util.Properties)1 Scene (javafx.scene.Scene)1 BorderPane (javafx.scene.layout.BorderPane)1