modules/controls/src/main/java/javafx/scene/chart/Axis.java

Print this page
rev 9240 : 8076423: JEP 253: Prepare JavaFX UI Controls & CSS APIs for Modularization


  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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.scene.chart;
  27 
  28 import javafx.css.Styleable;
  29 import javafx.css.CssMetaData;
  30 import javafx.css.PseudoClass;
  31 import javafx.css.StyleableBooleanProperty;
  32 import javafx.css.StyleableDoubleProperty;
  33 import javafx.css.StyleableObjectProperty;
  34 
  35 import com.sun.javafx.css.converters.BooleanConverter;
  36 import com.sun.javafx.css.converters.EnumConverter;
  37 import com.sun.javafx.css.converters.PaintConverter;
  38 import com.sun.javafx.css.converters.SizeConverter;
  39 
  40 import java.util.*;
  41 
  42 import javafx.animation.FadeTransition;
  43 import javafx.beans.binding.DoubleExpression;
  44 import javafx.beans.binding.ObjectExpression;
  45 import javafx.beans.binding.StringExpression;
  46 import javafx.beans.property.*;
  47 import javafx.beans.value.WritableBooleanValue;
  48 import javafx.beans.value.WritableValue;
  49 import javafx.collections.FXCollections;
  50 import javafx.collections.ObservableList;
  51 import javafx.css.FontCssMetaData;
  52 import javafx.css.StyleableProperty;
  53 import javafx.geometry.Bounds;
  54 import javafx.geometry.Dimension2D;
  55 import javafx.geometry.Orientation;
  56 import javafx.geometry.Pos;
  57 import javafx.geometry.Side;
  58 import javafx.scene.control.Label;
  59 import javafx.scene.layout.Region;
  60 import javafx.scene.paint.Color;
  61 import javafx.scene.paint.Paint;
  62 import javafx.scene.shape.LineTo;
  63 import javafx.scene.shape.MoveTo;
  64 import javafx.scene.shape.Path;
  65 import javafx.scene.text.Font;
  66 import javafx.scene.text.Text;
  67 import javafx.scene.transform.Rotate;




  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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.scene.chart;
  27 
  28 import javafx.css.Styleable;
  29 import javafx.css.CssMetaData;
  30 import javafx.css.PseudoClass;
  31 import javafx.css.StyleableBooleanProperty;
  32 import javafx.css.StyleableDoubleProperty;
  33 import javafx.css.StyleableObjectProperty;
  34 
  35 import javafx.css.converter.BooleanConverter;
  36 import javafx.css.converter.EnumConverter;
  37 import javafx.css.converter.PaintConverter;
  38 import javafx.css.converter.SizeConverter;
  39 
  40 import java.util.*;
  41 
  42 import javafx.animation.FadeTransition;
  43 import javafx.beans.binding.DoubleExpression;
  44 import javafx.beans.binding.ObjectExpression;
  45 import javafx.beans.binding.StringExpression;
  46 import javafx.beans.property.*;

  47 import javafx.beans.value.WritableValue;
  48 import javafx.collections.FXCollections;
  49 import javafx.collections.ObservableList;
  50 import javafx.css.FontCssMetaData;
  51 import javafx.css.StyleableProperty;
  52 import javafx.geometry.Bounds;
  53 import javafx.geometry.Dimension2D;
  54 import javafx.geometry.Orientation;
  55 import javafx.geometry.Pos;
  56 import javafx.geometry.Side;
  57 import javafx.scene.control.Label;
  58 import javafx.scene.layout.Region;
  59 import javafx.scene.paint.Color;
  60 import javafx.scene.paint.Paint;
  61 import javafx.scene.shape.LineTo;
  62 import javafx.scene.shape.MoveTo;
  63 import javafx.scene.shape.Path;
  64 import javafx.scene.text.Font;
  65 import javafx.scene.text.Text;
  66 import javafx.scene.transform.Rotate;