fr.lteconsulting.angular2gwt.ng.core.HostBinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of angular2-gwt Show documentation
Show all versions of angular2-gwt Show documentation
Allows to develop Angular 2 applications with GWT
package fr.lteconsulting.angular2gwt.ng.core;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Binds an Host element property to the annotated field
*/
@Retention( RetentionPolicy.RUNTIME )
@Target( ElementType.FIELD )
public @interface HostBinding
{
/**
* Property name, by default the name of the method
*/
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy