You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-dev@xmlgraphics.apache.org by hi...@apache.org on 2002/04/10 10:08:30 UTC

cvs commit: xml-batik/sources/org/apache/batik/css/dom CSSOMStyleDeclaration.java

hillion     02/04/10 01:08:30

  Modified:    sources/org/apache/batik/css/dom CSSOMStyleDeclaration.java
  Log:
  Fixed jdk 1.3.1 specific compilation errors.
  
  Revision  Changes    Path
  1.2       +4 -4      xml-batik/sources/org/apache/batik/css/dom/CSSOMStyleDeclaration.java
  
  Index: CSSOMStyleDeclaration.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/css/dom/CSSOMStyleDeclaration.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CSSOMStyleDeclaration.java	9 Apr 2002 16:27:18 -0000	1.1
  +++ CSSOMStyleDeclaration.java	10 Apr 2002 08:08:30 -0000	1.2
  @@ -24,7 +24,7 @@
    * This class represents a style declaration.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: CSSOMStyleDeclaration.java,v 1.1 2002/04/09 16:27:18 hillion Exp $
  + * @version $Id: CSSOMStyleDeclaration.java,v 1.2 2002/04/10 08:08:30 hillion Exp $
    */
   public class CSSOMStyleDeclaration implements CSSStyleDeclaration {
   
  @@ -266,15 +266,15 @@
            */
           public StyleDeclarationValue(String prop) {
               super(null);
  -            valueProvider = this;
  -            setModificationHandler(new AbstractModificationHandler() {
  +            this.valueProvider = this;
  +            this.setModificationHandler(new AbstractModificationHandler() {
                       protected Value getValue() {
                           return StyleDeclarationValue.this.getValue();
                       }
                       public void textChanged(String text) throws DOMException {
                           if (values == null ||
                               values.get(this) == null ||
  -                            handler == null) {
  +                            StyleDeclarationValue.this.handler == null) {
                               throw new DOMException
                                   (DOMException.NO_MODIFICATION_ALLOWED_ERR, "");
                           }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: batik-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: batik-dev-help@xml.apache.org