modules/graphics/src/main/java/javafx/scene/text/Text.java

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


   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle 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 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.text;
  27 
  28 import com.sun.javafx.css.converters.BooleanConverter;
  29 import com.sun.javafx.css.converters.EnumConverter;
  30 import com.sun.javafx.css.converters.SizeConverter;
  31 import com.sun.javafx.geom.BaseBounds;
  32 import com.sun.javafx.geom.Path2D;
  33 import com.sun.javafx.geom.RectBounds;
  34 import com.sun.javafx.geom.TransformedShape;
  35 import com.sun.javafx.geom.transform.BaseTransform;
  36 import com.sun.javafx.scene.DirtyBits;
  37 import com.sun.javafx.scene.text.*;
  38 import com.sun.javafx.sg.prism.NGNode;
  39 import com.sun.javafx.sg.prism.NGShape;
  40 import com.sun.javafx.sg.prism.NGText;
  41 import com.sun.javafx.tk.Toolkit;
  42 import javafx.beans.DefaultProperty;
  43 import javafx.beans.InvalidationListener;
  44 import javafx.beans.binding.DoubleBinding;
  45 import javafx.beans.binding.ObjectBinding;
  46 import javafx.beans.property.*;
  47 import javafx.css.*;
  48 import javafx.geometry.*;
  49 import javafx.scene.AccessibleAttribute;
  50 import javafx.scene.AccessibleRole;




   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle 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 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.text;
  27 
  28 import javafx.css.converter.BooleanConverter;
  29 import javafx.css.converter.EnumConverter;
  30 import javafx.css.converter.SizeConverter;
  31 import com.sun.javafx.geom.BaseBounds;
  32 import com.sun.javafx.geom.Path2D;
  33 import com.sun.javafx.geom.RectBounds;
  34 import com.sun.javafx.geom.TransformedShape;
  35 import com.sun.javafx.geom.transform.BaseTransform;
  36 import com.sun.javafx.scene.DirtyBits;
  37 import com.sun.javafx.scene.text.*;
  38 import com.sun.javafx.sg.prism.NGNode;
  39 import com.sun.javafx.sg.prism.NGShape;
  40 import com.sun.javafx.sg.prism.NGText;
  41 import com.sun.javafx.tk.Toolkit;
  42 import javafx.beans.DefaultProperty;
  43 import javafx.beans.InvalidationListener;
  44 import javafx.beans.binding.DoubleBinding;
  45 import javafx.beans.binding.ObjectBinding;
  46 import javafx.beans.property.*;
  47 import javafx.css.*;
  48 import javafx.geometry.*;
  49 import javafx.scene.AccessibleAttribute;
  50 import javafx.scene.AccessibleRole;