266267268269270271272273274275276
public Input getStart() { if (this.start != null) return this.start; this.start = new DateFromInput(null,"umsatzlist.filter.from"); this.start.setName(i18n.tr("Von")); this.start.setComment(null); this.start.addListener(this.listener); return this.start; }
150151152153154155156157158159160
105106107108109110111112113114115
166167168169170171172173174175176
private synchronized Input getFrom() { if (this.from != null) return this.from; this.from = new DateFromInput(); this.from.setName(i18n.tr("Von")); this.from.setComment(null); this.from.addListener(this.listener); return this.from; }