com.google.gwt.resources.client.CssResource.NotStrict Java Examples

The following examples show how to use com.google.gwt.resources.client.CssResource.NotStrict. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ButtonRenderingMutationHandler.java    From swellrt with Apache License 2.0 5 votes vote down vote up
@Source("Button.css")
// TODO(danilatos/mtsui): Remove @NotStrict, present because of
// wave-editor-off prop
//
// NOTE(user): We should be able to explicitly mark a class name for
// exception from obfuscation after we switch over to gwt r6559 (ref
//
// TODO(danilatos): This can be done now - make it so!
@NotStrict
Css css();
 
Example #2
Source File: ButtonRenderingMutationHandler.java    From incubator-retired-wave with Apache License 2.0 5 votes vote down vote up
@Source("Button.css")
// TODO(danilatos/mtsui): Remove @NotStrict, present because of
// wave-editor-off prop
//
// NOTE(user): We should be able to explicitly mark a class name for
// exception from obfuscation after we switch over to gwt r6559 (ref
//
// TODO(danilatos): This can be done now - make it so!
@NotStrict
Css css();
 
Example #3
Source File: ImageThumbnailWidget.java    From swellrt with Apache License 2.0 4 votes vote down vote up
/** Css resource */
@Source("Thumbnail.css")
@NotStrict  // TODO(user): make Strict by including all classes in the CssResource
public Css css();
 
Example #4
Source File: EditorImpl.java    From swellrt with Apache License 2.0 4 votes vote down vote up
/** Css resource */
// TODO(danilatos): extends CssResource to get obfuscated class name
// TODO(danilatos): factor our CSS into per-widget bundles (e.g., image thumbnail, paragraph)
@Source("Editor.css")
@NotStrict  // TODO(danilatos): make Strict by including all classes in the CssResource
CssResource css();
 
Example #5
Source File: PopupMenu.java    From swellrt with Apache License 2.0 4 votes vote down vote up
@Source("Menu.css")
@NotStrict  // TODO(user): make Strict by including/inheriting "verticalSeparator"
Css css();
 
Example #6
Source File: ImageThumbnailWidget.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
/** Css resource */
@Source("Thumbnail.css")
@NotStrict  // TODO(user): make Strict by including all classes in the CssResource
public Css css();
 
Example #7
Source File: EditorImpl.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
/** Css resource */
// TODO(danilatos): extends CssResource to get obfuscated class name
// TODO(danilatos): factor our CSS into per-widget bundles (e.g., image thumbnail, paragraph)
@Source("Editor.css")
@NotStrict  // TODO(danilatos): make Strict by including all classes in the CssResource
CssResource css();
 
Example #8
Source File: PopupMenu.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("Menu.css")
@NotStrict  // TODO(user): make Strict by including/inheriting "verticalSeparator"
Css css();
 
Example #9
Source File: GssResourceGenerator.java    From gss.gwt with Apache License 2.0 4 votes vote down vote up
private boolean isStrictResource(JMethod method) {
  NotStrict notStrict = method.getAnnotation(NotStrict.class);
  return notStrict == null;
}
 
Example #10
Source File: TestResources.java    From gss.gwt with Apache License 2.0 4 votes vote down vote up
@NotStrict
SomeGssResource notstrict();