Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.desktop/share/classes/java/beans/IndexedPropertyChangeEvent.java
41152 views
1
/*
2
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
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
7
* published by the Free Software Foundation. Oracle designates this
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 java.beans;
27
28
import java.io.Serial;
29
30
/**
31
* An "IndexedPropertyChange" event gets delivered whenever a component that
32
* conforms to the JavaBeans specification (a "bean") changes a bound
33
* indexed property. This class is an extension of {@code PropertyChangeEvent}
34
* but contains the index of the property that has changed.
35
* <P>
36
* Null values may be provided for the old and the new values if their
37
* true values are not known.
38
* <P>
39
* An event source may send a null object as the name to indicate that an
40
* arbitrary set of if its properties have changed. In this case the
41
* old and new values should also be null.
42
*
43
* @since 1.5
44
* @author Mark Davidson
45
*/
46
public class IndexedPropertyChangeEvent extends PropertyChangeEvent {
47
48
/**
49
* Use serialVersionUID from JDK 1.7 for interoperability.
50
*/
51
@Serial
52
private static final long serialVersionUID = -320227448495806870L;
53
54
/**
55
* The index of the property element that was changed.
56
*/
57
private int index;
58
59
/**
60
* Constructs a new {@code IndexedPropertyChangeEvent} object.
61
*
62
* @param source The bean that fired the event.
63
* @param propertyName The programmatic name of the property that
64
* was changed.
65
* @param oldValue The old value of the property.
66
* @param newValue The new value of the property.
67
* @param index index of the property element that was changed.
68
*/
69
public IndexedPropertyChangeEvent(Object source, String propertyName,
70
Object oldValue, Object newValue,
71
int index) {
72
super (source, propertyName, oldValue, newValue);
73
this.index = index;
74
}
75
76
/**
77
* Gets the index of the property that was changed.
78
*
79
* @return The index specifying the property element that was
80
* changed.
81
*/
82
public int getIndex() {
83
return index;
84
}
85
86
void appendTo(StringBuilder sb) {
87
sb.append("; index=").append(getIndex());
88
}
89
}
90
91