use of com.kyj.fx.voeditor.visual.component.google.trend.GoogleTrendComposite in project Gargoyle by callakrsos.
the class GoogleTrendExam2 method start.
/* (non-Javadoc)
* @see javafx.application.Application#start(javafx.stage.Stage)
*/
@Override
public void start(Stage primaryStage) throws Exception {
GoogleTrendComposite borRoot = new GoogleTrendComposite();
primaryStage.setScene(new Scene(borRoot));
primaryStage.setMaximized(true);
primaryStage.show();
}
use of com.kyj.fx.voeditor.visual.component.google.trend.GoogleTrendComposite in project Gargoyle by callakrsos.
the class NrchRealtimeSrchFlowComposite method googleChartSearch.
/**
* 구글 트랜드로 조회
*
* @작성자 : KYJ
* @작성일 : 2016. 11. 22.
* @param vo
*/
public void googleChartSearch(RealtimeSearchItemVO vo) {
if (vo != null) {
GoogleTrendComposite googleTrendComposite = new GoogleTrendComposite();
googleTrendComposite.searchKeywords(vo.getKeyword());
SharedMemory.getSystemLayoutViewController().loadNewSystemTab(GoogleTrendComposite.TITLE, googleTrendComposite);
}
}
Aggregations