public ChartsComposite(Composite parent, int style, LogComposite logComposite) { super(parent, style); this.currentTabShareList = new ArrayList<SlidingPortfolioShare>(); this.slidingEndDate = DateFactory.midnithDate(EventSignalConfig.getNewDate()); Calendar calendar = Calendar.getInstance(); calendar.add(Calendar.YEAR, -1); this.slidingStartDate = DateFactory.midnithDate(calendar.getTime()); this.logComposite = logComposite; this.hightlitedEventModel = EventModel.getInstance(new RefreshChartHighlighted(), logComposite); this.chartedEvtDefsTrends = initChartedEvtDefsTrendsSet(); this.chartedEvtDef = EventDefinition.ZERO; this.sliderSelection = false; this.stripedCloseFunction = new StripedCloseRelativeToStart(slidingStartDate, slidingEndDate); this.initGUI(); chartDisplayStrategy = new ChartPerfDisplay(this); }
private Date maxDate() { if (lastEndDate == null) { lastEndDate = DateFactory.midnithDate(EventSignalConfig.getNewDate()); } return lastEndDate; }