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. *
672673674675676677678679
if (observer == null) return; ObservedChangeEvent event = new ObservedChangeEvent(component, propertyName, newValue); observer.observeChange(event); } }
13751376137713781379138013811382138313841385
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.
14041405140614071408140914101411141214131414
new ObservedChangeEvent( component, propertyName, newValue ? Boolean.TRUE : Boolean.FALSE); observer.observeChange(event); } /** * Method used by pages and components to send notifications about * property changes.
14301431143214331434143514361437143814391440
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.
14561457145814591460146114621463146414651466
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.
14791480148114821483148414851486148714881489
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.
15021503150415051506150715081509151015111512
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.
15251526152715281529153015311532153315341535
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.