![JAR search and dependency download from the Maven repository](/logo.png)
com.sencha.gxt.state.client.DefaultStateAutoBeanFactory Maven / Gradle / Ivy
/**
* Sencha GXT 3.1.0-beta - Sencha for GWT
* Copyright(c) 2007-2014, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.sencha.gxt.state.client;
import com.google.web.bindery.autobean.shared.AutoBean;
import com.google.web.bindery.autobean.shared.AutoBeanFactory;
import com.sencha.gxt.state.client.BorderLayoutStateHandler.BorderLayoutState;
import com.sencha.gxt.state.client.GridStateHandler.GridState;
import com.sencha.gxt.state.client.TreeStateHandler.TreeState;
/**
* Default AutoBeanFactory
used by the {@link StateManager}. The
* auto bean factory is specified using a module rule:
* <set-configuration-property name="GXT.state.autoBeanFactory"
* value="com.sencha.gxt.state.client.DefaultStateAutoBeanFactory" />.
*
*
* To add additional beans to the factory, this interface should be extended.
* The new interface should then be specified in your applications module file
* to 'override' the current rule.
*/
public interface DefaultStateAutoBeanFactory extends AutoBeanFactory {
AutoBean tree();
AutoBean borderLayout();
AutoBean grid();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy