--- old/modules/controls/src/main/java/com/sun/javafx/scene/control/behavior/TextAreaBehavior.java 2015-09-03 14:50:11.128313100 -0700 +++ new/modules/controls/src/main/java/com/sun/javafx/scene/control/behavior/TextAreaBehavior.java 2015-09-03 14:50:10.485276300 -0700 @@ -1,511 +1,507 @@ -/* - * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * This code is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 only, as - * published by the Free Software Foundation. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the LICENSE file that accompanied this code. - * - * This code is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that - * accompanied this code). - * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ - -package com.sun.javafx.scene.control.behavior; - -import com.sun.javafx.PlatformUtil; -import com.sun.javafx.geom.transform.Affine3D; -import com.sun.javafx.scene.control.skin.TextAreaSkin; -import com.sun.javafx.scene.text.HitInfo; -import javafx.beans.value.ChangeListener; -import javafx.beans.value.ObservableValue; -import javafx.geometry.Bounds; -import javafx.geometry.Point2D; -import javafx.geometry.Rectangle2D; -import javafx.scene.Scene; -import javafx.scene.control.ContextMenu; -import javafx.scene.control.IndexRange; -import javafx.scene.control.TextArea; -import javafx.scene.input.ContextMenuEvent; -import javafx.scene.input.MouseButton; -import javafx.scene.input.MouseEvent; -import javafx.stage.Screen; -import javafx.stage.Window; - -import java.util.ArrayList; -import java.util.List; - -import static com.sun.javafx.PlatformUtil.isMac; -import static com.sun.javafx.PlatformUtil.isWindows; -import static javafx.scene.input.KeyCode.*; -import static javafx.scene.input.KeyEvent.KEY_PRESSED; - - -/** - * Text area behavior. - */ -public class TextAreaBehavior extends TextInputControlBehavior