Package 

Interface AnimationFrame

  • All Implemented Interfaces:

    
    public interface AnimationFrame
    
                        

    An interface to contain the information needed for Animations.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract String getText() The text.
      abstract Unit setText(String text) The text.
      abstract Integer getFadeIn() If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade onto the screen.
      abstract Unit setFadeIn(Integer fadeIn) If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade onto the screen.
      abstract Integer getStay() The time the frame should be shown.
      abstract Unit setStay(Integer stay) The time the frame should be shown.
      abstract Integer getFadeOut() If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade off of the screen.
      abstract Unit setFadeOut(Integer fadeOut) If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade off of the screen.
      abstract Integer getTotalTime() The combined time the frame should stay on the screen.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • getFadeIn

         abstract Integer getFadeIn()

        If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade onto the screen.

      • setFadeIn

         abstract Unit setFadeIn(Integer fadeIn)

        If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade onto the screen.

      • getStay

         abstract Integer getStay()

        The time the frame should be shown.

      • getFadeOut

         abstract Integer getFadeOut()

        If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade off of the screen.

      • setFadeOut

         abstract Unit setFadeOut(Integer fadeOut)

        If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade off of the screen.

      • getTotalTime

         abstract Integer getTotalTime()

        The combined time the frame should stay on the screen. (A combination of .fadeIn, .stay, .fadeOut)