01: /*
02: * Copyright 2006-2007 Pentaho Corporation. All rights reserved.
03: * This software was developed by Pentaho Corporation and is provided under the terms
04: * of the Mozilla Public License, Version 1.1, or any later version. You may not use
05: * this file except in compliance with the license. If you need a copy of the license,
06: * please go to http://www.mozilla.org/MPL/MPL-1.1.txt.
07: *
08: * Software distributed under the Mozilla Public License is distributed on an "AS IS"
09: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. Please refer to
10: * the license for the specific language governing your rights and limitations.
11: *
12: * Additional Contributor(s): Martin Schmid gridvision engineering GmbH
13: */
14: package org.pentaho.jfreereport.legacy;
15:
16: import org.jetbrains.annotations.NotNull;
17: import org.jfree.report.function.AbstractFunction;
18: import org.jfree.report.function.Expression;
19:
20: import java.util.Date;
21:
22: @Deprecated
23: public class GetCurrentDateFunction extends AbstractFunction {
24:
25: public GetCurrentDateFunction() {
26: }
27:
28: public GetCurrentDateFunction(@NotNull
29: final String name) {
30: this ();
31: setName(name);
32: }
33:
34: @NotNull
35: public Object getValue() {
36: return new Date();
37: }
38:
39: @NotNull
40: public Expression getInstance() {
41: return super.getInstance();
42: }
43:
44: }
|