/src/org/mt4j/components/css/util/CSSStylableComponent.java
http://mt4j.googlecode.com/ · Java · 52 lines · 10 code · 9 blank · 33 comment · 0 complexity · 4c7fc8f56a7d4fd9cbaa3a104c6b1ee5 MD5 · raw file
- package org.mt4j.components.css.util;
-
- // TODO: Auto-generated Javadoc
- /**
- * The Interface CSSStylableComponent.
- */
- public interface CSSStylableComponent {
-
- /**
- * Checks if the Component is CSS styled.
- *
- * @return true, if is cSS styled
- */
- public boolean isCSSStyled();
-
- /**
- * Enables the CSS (if everything is right).
- */
- public void enableCSS();
-
- /**
- * Disable the CSS.
- */
- public void disableCSS();
-
- /**
- * Appl???es the (global) style sheets.
- */
- public void applyStyleSheet();
-
- /**
- * Gets the css helper.
- *
- * @return the css helper
- */
- public CSSHelper getCssHelper();
-
-
- /**
- * Checks if css is force disabled.
- *
- * @return true, if is css force disabled
- */
- public boolean isCssForceDisabled();
-
- /**
- * Sets the css force disable.
- *
- * @param cssForceDisabled the new css force disable
- */
- public void setCssForceDisable(boolean cssForceDisabled);
- }