Skip to content

Instantly share code, notes, and snippets.

@LarryMatte
Last active August 29, 2015 14:23
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 LarryMatte/b7137956ed9a3f9deccb to your computer and use it in GitHub Desktop.
Save LarryMatte/b7137956ed9a3f9deccb to your computer and use it in GitHub Desktop.
create an AnimationResources.java file in which...
package com.projectname.project.client.resources;
import com.arcbees.gsss.animation.client.AnimationResources;
import com.google.gwt.resources.client.ClientBundle;
public interface AnimationsResources extends ClientBundle {
interface Style extends AnimationResources.Animation {
}
@Source({"com/arcbees/gsss/animation/client/animationsettings.gss",
"com/arcbees/gsss/animation/client/animations.gss",
"css/myStyle.gss"})
Style style();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment