13341335133613371338133913401341134213431344
if (observer == null) return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, newValue); observer.observeChange(event); } /** * Method used by pages and components to send notifications about * property changes.
13631364136513661367136813691370137113721373
new ObservedChangeEvent( component, propertyName, newValue ? Boolean.TRUE : Boolean.FALSE); observer.observeChange(event); } /** * Method used by pages and components to send notifications about * property changes.
13891390139113921393139413951396139713981399
return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, new Double(newValue)); observer.observeChange(event); } /** * Method used by pages and components to send notifications about * property changes.
14151416141714181419142014211422142314241425
return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, new Float(newValue)); observer.observeChange(event); } /** * Method used by pages and components to send notifications about * property changes.
14381439144014411442144314441445144614471448
return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, new Integer(newValue)); observer.observeChange(event); } /** * Method used by pages and components to send notifications about * property changes.
14611462146314641465146614671468146914701471
return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, new Long(newValue)); observer.observeChange(event); } /** * Method used by pages and components to send notifications about * property changes.
14841485148614871488148914901491149214931494
return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, new Character(newValue)); observer.observeChange(event); } /** * Method used by pages and components to send notifications about * property changes.
15071508150915101511151215131514151515161517
return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, new Byte(newValue)); observer.observeChange(event); } /** * Method used by pages and components to send notifications about * property changes.
15331534153515361537153815391540154115421543
return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, new Short(newValue)); observer.observeChange(event); } /** * Returns true if the input is null or contains only whitespace. *
743744745746747748749750751752753
if (observer == null) return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, newValue); observer.observeChange(event); } /** * Returns true if the input is null or contains only whitespace. * <p>