Coverage Report - com.sun.tools.javafx.tree.JFXInterpolate
 
Classes in this File Line Coverage Branch Coverage Complexity
JFXInterpolate
0%
0/12
N/A
0
 
 1  
 /*
 2  
  * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
 3  
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 4  
  * 
 5  
  * This code is free software; you can redistribute it and/or modify it
 6  
  * under the terms of the GNU General Public License version 2 only, as
 7  
  * published by the Free Software Foundation.  Sun designates this
 8  
  * particular file as subject to the "Classpath" exception as provided
 9  
  * by Sun in the LICENSE file that accompanied this code.
 10  
  * 
 11  
  * This code is distributed in the hope that it will be useful, but WITHOUT
 12  
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 13  
  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 14  
  * version 2 for more details (a copy is included in the LICENSE file that
 15  
  * accompanied this code).
 16  
  * 
 17  
  * You should have received a copy of the GNU General Public License version
 18  
  * 2 along with this work; if not, write to the Free Software Foundation,
 19  
  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 20  
  * 
 21  
  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 22  
  * CA 95054 USA or visit www.sun.com if you need additional information or
 23  
  * have any questions.
 24  
  */
 25  
 
 26  
 package com.sun.tools.javafx.tree;
 27  
 
 28  
 import com.sun.javafx.api.tree.InterpolateTree;
 29  
 import com.sun.javafx.api.tree.InterpolateValueTree;
 30  
 import com.sun.javafx.api.tree.JavaFXTree.JavaFXKind;
 31  
 import com.sun.javafx.api.tree.JavaFXTreeVisitor;
 32  
 import com.sun.tools.javac.tree.JCTree.JCExpression;
 33  
 import com.sun.tools.javac.util.List;
 34  
 
 35  0
 public class JFXInterpolate extends JFXExpression implements InterpolateTree {
 36  
     public JCExpression var;
 37  
     public List<JFXInterpolateValue> values;
 38  
     
 39  0
     public JFXInterpolate(JCExpression var, List<JFXInterpolateValue> values) {
 40  0
         this.var = var;
 41  0
         this.values = values;
 42  0
     }
 43  
 
 44  
     public JCExpression getVariable() {
 45  0
         return var;
 46  
     }
 47  
 
 48  
     public java.util.List<InterpolateValueTree> getInterpolateValues() {
 49  0
         return JFXTree.convertList(InterpolateValueTree.class, values);
 50  
     }
 51  
 
 52  
     public JavaFXKind getJavaFXKind() {
 53  0
         return JavaFXKind.INTERPOLATE;
 54  
     }
 55  
 
 56  
     public <R, D> R accept(JavaFXTreeVisitor<R, D> visitor, D data) {
 57  0
         return visitor.visitInterpolate(this, data);
 58  
     }
 59  
 
 60  
     @Override
 61  
     public void accept(JavafxVisitor v) {
 62  0
         v.visitInterpolate(this);
 63  0
     }
 64  
 
 65  
     @Override
 66  
     public int getTag() {
 67  0
         return JavafxTag.INTERPOLATION_EXPR;
 68  
     }
 69  
 }