src/share/classes/javax/swing/text/html/OptionListModel.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2013, 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 --- 1,7 ---- /* ! * Copyright (c) 1998, 2014, 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
*** 40,50 **** * It also stores the initial state of the JList, to ensure an * accurate reset, if the user requests a reset of the form. * @author Sunita Mani */ ! class OptionListModel<E> extends DefaultListModel<E> implements ListSelectionModel, Serializable { private static final int MIN = -1; private static final int MAX = Integer.MAX_VALUE; --- 40,50 ---- * It also stores the initial state of the JList, to ensure an * accurate reset, if the user requests a reset of the form. * @author Sunita Mani */ ! @SuppressWarnings("serial") // Superclass is not serializable across versions class OptionListModel<E> extends DefaultListModel<E> implements ListSelectionModel, Serializable { private static final int MIN = -1; private static final int MAX = Integer.MAX_VALUE;