Difference between revisions of "PropertyGroupHandlerExtension"

From OpenKM Documentation
Jump to: navigation, search
(Created page with 'Any extension that implements PropertyGroupHandlerExtension will be watching all events fired from property group ( metadata ) tab == Method == onChange(PropertyGroupEventConst…')
 
Line 12: Line 12:
 
== Example ==
 
== Example ==
 
<source lang="java">
 
<source lang="java">
public class Example extends implements PropertyHandlerExtension {
+
public class Example implements PropertyHandlerExtension {
 
 
 
public Example() {
 
public Example() {

Revision as of 13:13, 7 July 2010

Any extension that implements PropertyGroupHandlerExtension will be watching all events fired from property group ( metadata ) tab


Method

onChange(PropertyGroupEventConstant event)


onChange(PropertyGroupEventConstant event)

Each time it'll be some new property group ( metadata ) event the method onChange it'll be fired by OpenKM


Example

public class Example implements PropertyHandlerExtension {
	
	public Example() {
	}


        @Override
	public void onChange(PropertyEventConstant event) {
		if (event.equals(HasPropertyGroupEvent.EVENT_PROPERTYGROUP_CHANGED)) {
			Window.alert("propertyGroup changed - " +event.getType());
		} else {
                        Window.alert("other property group event - " +event.getType());
                }
	}
}