Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8106363

JavaFX Tutorial Chapter 1 fill.fx got compilation errors

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • fx1.1
    • fx1.1
    • docs
    • None
    • WinXPpro SP3 with javafx-sdk1.1-b03

      I am running fill.fx from Tutorial lesson 1, got compilation errors, the code is from:
      http://inkspb.russia.sun.com/FXDocs/Concepts/Franca/ui/overview/fill.fx

      The errors about Color cannot find.

      So I added import Color, it works, looks like the Color class needs to be added in the import section

      C:\>javafx-sdk1.1\bin\javafxc fill.fx
      .\Color.fx:3: Color is already defined in this compilation unit
      import javafx.scene.paint.Color;
      ^
      fill.fx:9: cannot find symbol
      symbol : variable DARKSLATEGRAY
      location: class Color
      def stroke = Color.DARKSLATEGRAY;
                        ^
      fill.fx:10: cannot find symbol
      symbol : variable CADETBLUE
      location: class Color
      def fill = Color.CADETBLUE;
                      ^
      fill.fx:11: cannot find symbol
      symbol : variable GOLD
      location: class Color
      def alterfill = Color.GOLD;
                           ^
      fill.fx:17: cannot find symbol
      symbol : variable LINEN
      location: class Color
                  fill: Color.LINEN;
                             ^
      fill.fx:89: cannot find symbol
      symbol : variable WHITE
      location: class Color
                                          Stop {offset: 0.0 color: Color.WHITE},
                                                                        ^
      fill.fx:90: cannot find symbol
      symbol : variable YELLOW
      location: class Color
                                          Stop {offset: 0.5 color: Color.YELLOW},
                                                                        ^
      fill.fx:91: cannot find symbol
      symbol : variable GOLD
      location: class Color
                                          Stop {offset: 1.0 color: Color.GOLD}
                                                                        ^
      fill.fx:110: cannot find symbol
      symbol : variable WHITE
      location: class Color
                                          Stop {offset: 0.0 color: Color.WHITE},
                                                                        ^
      fill.fx:111: cannot find symbol
      symbol : variable YELLOW
      location: class Color
                                          Stop {offset: 0.5 color: Color.YELLOW},
                                                                        ^
      fill.fx:112: cannot find symbol
      symbol : variable GOLD
      location: class Color
                                          Stop {offset: 1.0 color: Color.GOLD}
                                                                        ^
      fill.fx:131: cannot find symbol
      symbol : variable WHITE
      location: class Color
                                          Stop {offset: 0.0 color: Color.WHITE},
                                                                        ^
      fill.fx:132: cannot find symbol
      symbol : variable YELLOW
      location: class Color
                                          Stop {offset: 0.5 color: Color.YELLOW},
                                                                        ^
      fill.fx:133: cannot find symbol
      symbol : variable GOLD
      location: class Color
                                          Stop {offset: 1.0 color: Color.GOLD}
                                                                        ^
      14 errors

      After I import javafx.scene.paint.Color; The code is compiled fine and runs OK.
      The code is attached.

            aredko Alla Redko (Inactive)
            ttzhang Tao Zhang
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: