Coverage Report - org.jtheque.core.managers.view.able.ViewDefaults
 
Classes in this File Line Coverage Branch Coverage Complexity
ViewDefaults
N/A
N/A
1
 
 1  
 package org.jtheque.core.managers.view.able;
 2  
 
 3  
 import java.awt.Color;
 4  
 import java.awt.Font;
 5  
 
 6  
 /*
 7  
  * This file is part of JTheque.
 8  
  *
 9  
  * JTheque is free software: you can redistribute it and/or modify
 10  
  * it under the terms of the GNU General Public License as published by
 11  
  * the Free Software Foundation, either version 3 of the License.
 12  
  *
 13  
  * JTheque is distributed in the hope that it will be useful,
 14  
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 15  
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 16  
  * GNU General Public License for more details.
 17  
  *
 18  
  * You should have received a copy of the GNU General Public License
 19  
  * along with JTheque.  If not, see <http://www.gnu.org/licenses/>.
 20  
  */
 21  
 
 22  
 /**
 23  
  * The view defaults.
 24  
  *
 25  
  * @author Baptiste Wicht
 26  
  */
 27  
 public interface ViewDefaults {
 28  
     /**
 29  
      * Return the default background color.
 30  
      *
 31  
      * @return The default background color.
 32  
      */
 33  
     Color getBackgroundColor();
 34  
 
 35  
     /**
 36  
      * Return the default filthy background color.
 37  
      *
 38  
      * @return The default filthy background color.
 39  
      */
 40  
     Color getFilthyBackgroundColor();
 41  
 
 42  
     /**
 43  
      * Return the default foreground color.
 44  
      *
 45  
      * @return The default foreground color.
 46  
      */
 47  
     Color getForegroundColor();
 48  
 
 49  
     /**
 50  
      * Return the default selected foreground color.
 51  
      *
 52  
      * @return The default selected foreground color.
 53  
      */
 54  
     Color getSelectedForegroundColor();
 55  
 
 56  
     /**
 57  
      * Return the default selected background color.
 58  
      *
 59  
      * @return The default selected background color.
 60  
      */
 61  
     Color getSelectedBackgroundColor();
 62  
 
 63  
     /**
 64  
      * Return the default filthy foreground color.
 65  
      *
 66  
      * @return The default filthy foreground color.
 67  
      */
 68  
     Color getFilthyForegroundColor();
 69  
 
 70  
     /**
 71  
      * Return the filthy button font.
 72  
      *
 73  
      * @return The filthy button font.
 74  
      */
 75  
     Font getFilthyButtonFont();
 76  
 
 77  
     /**
 78  
      * Return the filthy input font.
 79  
      *
 80  
      * @return The filthy input font.
 81  
      */
 82  
     Font getFilthyInputFont();
 83  
 }