src/java.desktop/share/classes/javax/swing/JComponent.java
changeset 52248 2e330da7cbf4
parent 47980 519f8bc59a1f
child 52752 5e7dba63836d
equal deleted inserted replaced
52247:f775f83d6b60 52248:2e330da7cbf4
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2018, 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
  3459 
  3459 
  3460 
  3460 
  3461     // This class is used by the KeyboardState class to provide a single
  3461     // This class is used by the KeyboardState class to provide a single
  3462     // instance that can be stored in the AppContext.
  3462     // instance that can be stored in the AppContext.
  3463     static final class IntVector {
  3463     static final class IntVector {
  3464         int array[] = null;
  3464         int[] array = null;
  3465         int count = 0;
  3465         int count = 0;
  3466         int capacity = 0;
  3466         int capacity = 0;
  3467 
  3467 
  3468         int size() {
  3468         int size() {
  3469             return count;
  3469             return count;