fr.lteconsulting.angular2gwt.ng.core.Component 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;
import fr.lteconsulting.angular2gwt.client.interop.ng.AnimationProvider;
@Retention( RetentionPolicy.RUNTIME )
@Target( ElementType.TYPE )
public @interface Component
{
String selector() default "";
String template() default "";
String templateUrl() default "";
String[] styles() default {};
String[] styleUrls() default {};
Class>[] directives() default {};
Class>[] providers() default {};
Class extends AnimationProvider>[] animations() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy