All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.extjs.gxt.ui.client.widget.ComponentPlugin Maven / Gradle / Ivy

There is a newer version: 2.3.1-gwt22
Show newest version
/*
 * Ext GWT - Ext for GWT
 * Copyright(c) 2007, 2008, Ext JS, LLC.
 * [email protected]
 * 
 * http://extjs.com/license
 */
package com.extjs.gxt.ui.client.widget;

/**
 * Defines the interface for component plugins. Component will call the
 * {@link #init(Component)} method where each plugin can then call methods or
 * respond to events on the component as needed to provide its functionality.
 */
public interface ComponentPlugin {

  /**
   * Initializes the plugin when the component is created.
   * 
   * @param component the source component
   */
  public void init(Component component);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy