/src/org/mt4j/components/css/util/CSSStylableComponent.java
Java | 52 lines | 10 code | 9 blank | 33 comment | 0 complexity | 4c7fc8f56a7d4fd9cbaa3a104c6b1ee5 MD5 | raw file
1package org.mt4j.components.css.util; 2 3// TODO: Auto-generated Javadoc 4/** 5 * The Interface CSSStylableComponent. 6 */ 7public interface CSSStylableComponent { 8 9 /** 10 * Checks if the Component is CSS styled. 11 * 12 * @return true, if is cSS styled 13 */ 14 public boolean isCSSStyled(); 15 16 /** 17 * Enables the CSS (if everything is right). 18 */ 19 public void enableCSS(); 20 21 /** 22 * Disable the CSS. 23 */ 24 public void disableCSS(); 25 26 /** 27 * Appl???es the (global) style sheets. 28 */ 29 public void applyStyleSheet(); 30 31 /** 32 * Gets the css helper. 33 * 34 * @return the css helper 35 */ 36 public CSSHelper getCssHelper(); 37 38 39 /** 40 * Checks if css is force disabled. 41 * 42 * @return true, if is css force disabled 43 */ 44 public boolean isCssForceDisabled(); 45 46 /** 47 * Sets the css force disable. 48 * 49 * @param cssForceDisabled the new css force disable 50 */ 51 public void setCssForceDisable(boolean cssForceDisabled); 52}