View Javadoc
1   /*******************************************************************************
2    * JDateButton: JavaFX Date Button
3    * Copyright 2012,2014 Tony Washer
4    *
5    * Licensed under the Apache License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy 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,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   * ------------------------------------------------------------
17   * SubVersion Revision Information:
18   * $URL: https://svn.code.sf.net/p/jdatebutton/code/tags/v2.1.0-b3/jdatebutton-core/src/main/java/net/sourceforge/jdatebutton/JDateBaseButton.java $
19   * $Revision: 34 $
20   * $Author: tonywasher $
21   * $Date: 2015-12-01 16:21:13 +0000 (Tue, 01 Dec 2015) $
22   ******************************************************************************/
23  package net.sourceforge.jdatebutton;
24  
25  /**
26   * Interface definition for a DateButton.
27   * @author Tony Washer
28   */
29  public interface JDateBaseButton {
30      /**
31       * Refresh the text.
32       */
33      void refreshText();
34  
35      /**
36       * Rebuild names.
37       */
38      void reBuildNames();
39  
40      /**
41       * Obtain Date Configuration.
42       * @return the date configuration
43       */
44      JDateBaseConfig<?> getDateConfig();
45  }