All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.css.properties.css3.CssPaddingRightCSS3 Maven / Gradle / Ivy

The newest version!
//
// $Id: CssPaddingRightCSS3.java,v 1.4 2010-01-05 13:49:54 ylafon Exp $
// From Philippe Le Hegaret ([email protected])
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css3;

import org.w3c.css.parser.CssStyle;
import org.w3c.css.properties.css.CssProperty;
import org.w3c.css.util.ApplContext;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssExpression;

/**
 *   

*    'padding-right' *

*

* Value: <length> | <percentage>
* Initial: 0
* Applies to: all elements
* Inherited: no
* Percentage values: refer to parent element's width
*

* This property sets the right padding of an element. *

 *   BLOCKQUOTE { padding-right: 10px }
 * 
*

* Padding values cannot be negative. * * @version $Revision: 1.4 $ */ public class CssPaddingRightCSS3 extends CssPaddingSideCSS3 { /** * Create a new CssPaddingRightCSS3 */ public CssPaddingRightCSS3() { super(); } /** * Create a new CssPaddingRightCSS3 with an another CssPaddingSideCSS3 * * @param another The another side */ public CssPaddingRightCSS3(CssPaddingSideCSS3 another) { super(another); } /** * Create a new CssPaddingRightCSS3 * * @param expression The expression for this property. * @exception InvalidParamException Values are incorrect */ public CssPaddingRightCSS3(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { super(ac, expression, check); } public CssPaddingRightCSS3(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } /** * Returns the name of this property */ public String getPropertyName() { return "padding-right"; } /** * Add this property to the CssStyle. * * @param style The CssStyle */ public void addToStyle(ApplContext ac, CssStyle style) { if (((Css3Style) style).cssPaddingRightCSS3 != null) style.addRedefinitionWarning(ac, this); ((Css3Style) style).cssPaddingRightCSS3 = this; } /** * Get this property in the style. * * @param style The style where the property is * @param resolve if true, resolve the style to find this property */ public CssProperty getPropertyInStyle(CssStyle style, boolean resolve) { if (resolve) { return ((Css3Style) style).getPaddingRightCSS3(); } else { return ((Css3Style) style).cssPaddingCSS3.getRight(); } } /** * Compares two properties for equality. * * @param value The other property. */ public boolean equals(CssProperty property) { return (property instanceof CssPaddingRightCSS3 && value.equals(((CssPaddingRightCSS3) property).value)); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy