src/java.desktop/macosx/classes/sun/lwawt/LWComponentPeer.java
changeset 47971 75686e8da573
parent 47216 71c04702a3d5
child 51911 57fa2c1c98d4
equal deleted inserted replaced
47970:1c8b81ff863e 47971:75686e8da573
     1 /*
     1 /*
     2  * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
  1446      * Returns layouting state. Used by ComponentPeer to skip all the paint
  1446      * Returns layouting state. Used by ComponentPeer to skip all the paint
  1447      * events during layout.
  1447      * events during layout.
  1448      *
  1448      *
  1449      * @return true during layout, false otherwise.
  1449      * @return true during layout, false otherwise.
  1450      */
  1450      */
  1451     private final boolean isLayouting() {
  1451     private boolean isLayouting() {
  1452         return isLayouting;
  1452         return isLayouting;
  1453     }
  1453     }
  1454 }
  1454 }