Ruckus
03/26/2019, 7:36 PMimport javafx.scene.paint.Color as ColorFX
and
typealias ColorFX as javafx.scene.paint.Color
Pavlo Liapota
03/26/2019, 9:41 PMtypealias
is public
by default and will be accessible outside of a file. So you may want to declare it private
.
Also you can access typealias
by a full qualified name, while named import by that name only.Pavlo Liapota
03/26/2019, 9:41 PMRuckus
03/27/2019, 1:22 AMdmcg
03/27/2019, 10:24 AMRuckus
03/27/2019, 3:14 PMdmcg
03/27/2019, 3:23 PM