public static abstract @interface

CssResource.NotStrict

implements Annotation
com.google.gwt.resources.client.CssResource.NotStrict

Class Overview

The presence of this annotation on a CssResource accessor method indicates that any class selectors that do not correspond with a String accessor method in the return type or an @external declaration should not trigger a compilation error. This annotation is not recommended for new code.

 interface Resources extends ClientBundle {
  @NotStrict
  @Source("legacy.css")
   CssResource css();
 }
 

Summary

[Expand]
Inherited Methods
From interface java.lang.annotation.Annotation