Skip to content

Instantly share code, notes, and snippets.

@jasonlemay
Created May 14, 2015 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonlemay/37b9d5852e9c90b3ef34 to your computer and use it in GitHub Desktop.
Save jasonlemay/37b9d5852e9c90b3ef34 to your computer and use it in GitHub Desktop.
Getting started with CSS (GSS) in GWT
package com.company.project.client.resources;
import javax.inject.Inject;
public class ResourceLoader {
@Inject
ResourceLoader(
AppResources appResources) {
appResources.homepage().ensureInjected();
appResources.services().ensureInjected();
appResources.contact().ensureInjected();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment