
com.extjs.gxt.ui.client.data.BeanModelMarker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxt Show documentation
Show all versions of gxt Show documentation
Rich Internet Application Framework for GWT
/*
* Sencha GXT 2.3.1 - Sencha for GWT
* Copyright(c) 2007-2013, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.extjs.gxt.ui.client.data;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marker interface that identifies bean model classes indirectly without having
* to modify the bean. As an alternative, the bean may implement the
* {@link BeanModelTag} interface.
*/
public interface BeanModelMarker {
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
public @interface BEAN {
Class> value();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy