Skip to content

Instantly share code, notes, and snippets.

@LarryMatte
Created June 23, 2015 02:27
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/7b20ed6a084d99dc6b70 to your computer and use it in GitHub Desktop.
Save LarryMatte/7b20ed6a084d99dc6b70 to your computer and use it in GitHub Desktop.
add the .myAnimation() method
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 {
String myAnimation();
}
@Source({"com/arcbees/gsss/animation/client/animationsettings.gss",
"com/arcbees/gsss/animation/client/animations.gss",
"css/animations.gss"})
Style style();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment