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();
}
Aggregations