Class AbstractCSSPropertyCompositeHandler

java.lang.Object
org.eclipse.e4.ui.css.core.dom.properties.AbstractCSSPropertyCompositeHandler
All Implemented Interfaces:
ICSSPropertyCompositeHandler, ICSSPropertyHandler
Direct Known Subclasses:
AbstractCSSPropertyBackgroundCompositeHandler, AbstractCSSPropertyBorderCompositeHandler, AbstractCSSPropertyFontCompositeHandler

public abstract class AbstractCSSPropertyCompositeHandler extends Object implements ICSSPropertyCompositeHandler
Abstract class which manage CSS Property composite like border:solid black 1px; It dispatch
Version:
1.0.0
Author:
Angelo ZERR
  • Constructor Details

    • AbstractCSSPropertyCompositeHandler

      public AbstractCSSPropertyCompositeHandler()
  • Method Details

    • applyCSSPropertyComposite

      public void applyCSSPropertyComposite(Object element, String property, CSSValue value, String pseudo, CSSEngine engine) throws Exception
      Apply CSS Property composite and dispatch CSS Property if CSSValue is CSSValueList by calling applyCSSProperty for each item of CSSValue.
      Throws:
      Exception
    • applyCSSProperty

      public abstract void applyCSSProperty(Object element, CSSValue value, String pseudo, CSSEngine engine) throws Exception
      Apply CSS Property.
      Throws:
      Exception