@@ -5240,7 +5240,7 @@ public void propertyChange(PropertyChangeEvent e) {
accessBridge .debugString ("[INFO]: AccessibleContext: " + ac );
String propertyName = e .getPropertyName ();
if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_CARET_PROPERTY ) == 0 ) {
if (propertyName .equals (AccessibleContext .ACCESSIBLE_CARET_PROPERTY )) {
int oldValue = 0 ;
int newValue = 0 ;
@@ -5253,7 +5253,7 @@ public void propertyChange(PropertyChangeEvent e) {
accessBridge .debugString ("[INFO]: - about to call propertyCaretChange() old value: " + oldValue + "new value: " + newValue );
accessBridge .propertyCaretChange (e , ac , oldValue , newValue );
} else if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_DESCRIPTION_PROPERTY ) == 0 ) {
} else if (propertyName .equals (AccessibleContext .ACCESSIBLE_DESCRIPTION_PROPERTY )) {
String oldValue = null ;
String newValue = null ;
@@ -5266,7 +5266,7 @@ public void propertyChange(PropertyChangeEvent e) {
accessBridge .debugString ("[INFO]: - about to call propertyDescriptionChange() old value: " + oldValue + "new value: " + newValue );
accessBridge .propertyDescriptionChange (e , ac , oldValue , newValue );
} else if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_NAME_PROPERTY ) == 0 ) {
} else if (propertyName .equals (AccessibleContext .ACCESSIBLE_NAME_PROPERTY )) {
String oldValue = null ;
String newValue = null ;
@@ -5279,12 +5279,12 @@ public void propertyChange(PropertyChangeEvent e) {
accessBridge .debugString ("[INFO]: - about to call propertyNameChange() old value: " + oldValue + " new value: " + newValue );
accessBridge .propertyNameChange (e , ac , oldValue , newValue );
} else if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_SELECTION_PROPERTY ) == 0 ) {
} else if (propertyName .equals (AccessibleContext .ACCESSIBLE_SELECTION_PROPERTY )) {
accessBridge .debugString ("[INFO]: - about to call propertySelectionChange() " + ac + " " + Thread .currentThread () + " " + e .getSource ());
accessBridge .propertySelectionChange (e , ac );
} else if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_STATE_PROPERTY ) == 0 ) {
} else if (propertyName .equals (AccessibleContext .ACCESSIBLE_STATE_PROPERTY )) {
String oldValue = null ;
String newValue = null ;
@@ -5301,11 +5301,11 @@ public void propertyChange(PropertyChangeEvent e) {
accessBridge .debugString ("[INFO]: - about to call propertyStateChange()" );
accessBridge .propertyStateChange (e , ac , oldValue , newValue );
} else if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_TEXT_PROPERTY ) == 0 ) {
} else if (propertyName .equals (AccessibleContext .ACCESSIBLE_TEXT_PROPERTY )) {
accessBridge .debugString ("[INFO]: - about to call propertyTextChange()" );
accessBridge .propertyTextChange (e , ac );
} else if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_VALUE_PROPERTY ) == 0 ) { // strings 'cause of floating point, etc.
} else if (propertyName .equals (AccessibleContext .ACCESSIBLE_VALUE_PROPERTY )) { // strings 'cause of floating point, etc.
String oldValue = null ;
String newValue = null ;
@@ -5318,10 +5318,10 @@ public void propertyChange(PropertyChangeEvent e) {
accessBridge .debugString ("[INFO]: - about to call propertyDescriptionChange()" );
accessBridge .propertyValueChange (e , ac , oldValue , newValue );
} else if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_VISIBLE_DATA_PROPERTY ) == 0 ) {
} else if (propertyName .equals (AccessibleContext .ACCESSIBLE_VISIBLE_DATA_PROPERTY )) {
accessBridge .propertyVisibleDataChange (e , ac );
} else if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_CHILD_PROPERTY ) == 0 ) {
} else if (propertyName .equals (AccessibleContext .ACCESSIBLE_CHILD_PROPERTY )) {
AccessibleContext oldAC = null ;
AccessibleContext newAC = null ;
Accessible a ;
@@ -5337,7 +5337,7 @@ public void propertyChange(PropertyChangeEvent e) {
accessBridge .debugString ("[INFO]: - about to call propertyChildChange() old AC: " + oldAC + "new AC: " + newAC );
accessBridge .propertyChildChange (e , ac , oldAC , newAC );
} else if (propertyName .compareTo (AccessibleContext .ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY ) == 0 ) {
} else if (propertyName .equals (AccessibleContext .ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY )) {
handleActiveDescendentEvent (e , ac );
}
}
53d7e95
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues