View Javadoc
1   /*
2    * MoneyWise: Finance Application
3    * Copyright 2026. Tony Washer
4    *
5    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6    * use this file except in compliance with the License.  You may obtain a copy
7    * of the License at
8    *
9    *   http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
14   * License for the specific language governing permissions and limitations under
15   * the License.
16   */
17  
18  package io.github.tonywasher.joceanus.moneywise.atlas.data.analysis.buckets;
19  
20  import io.github.tonywasher.joceanus.moneywise.atlas.data.analysis.buckets.MoneyWiseXAnalysisInterfaces.MoneyWiseXAnalysisCursor;
21  import io.github.tonywasher.joceanus.moneywise.data.basic.MoneyWiseDataSet;
22  import io.github.tonywasher.joceanus.moneywise.data.statics.MoneyWiseCurrency;
23  import io.github.tonywasher.joceanus.oceanus.date.OceanusDateRange;
24  import io.github.tonywasher.joceanus.prometheus.views.PrometheusEditSet;
25  
26  /**
27   * Data Analysis.
28   *
29   * @author Tony Washer
30   */
31  public interface MoneyWiseXAnalysisHolder {
32      /**
33       * Obtain the data.
34       *
35       * @return the data
36       */
37      MoneyWiseDataSet getData();
38  
39      /**
40       * Obtain the editSet.
41       *
42       * @return the editSet
43       */
44      PrometheusEditSet getEditSet();
45  
46      /**
47       * Obtain the cursor.
48       *
49       * @return the cursor
50       */
51      MoneyWiseXAnalysisCursor getCursor();
52  
53      /**
54       * Obtain the currency.
55       *
56       * @return the currency
57       */
58      MoneyWiseCurrency getCurrency();
59  
60      /**
61       * Obtain the date range.
62       *
63       * @return the date range
64       */
65      OceanusDateRange getDateRange();
66  }