Class UiWindow.SetSizeCommand

java.lang.Object
org.teamapps.dto.UiWindow.SetSizeCommand
All Implemented Interfaces:
UiCommand<java.lang.Void>
Enclosing class:
UiWindow

public static class UiWindow.SetSizeCommand
extends java.lang.Object
implements UiCommand<java.lang.Void>
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.String componentId  
    protected int height  
    protected int width  
  • Constructor Summary

    Constructors 
    Constructor Description
    SetSizeCommand()
    Deprecated.
    Only for Jackson deserialization.
    SetSizeCommand​(java.lang.String componentId, int width, int height)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getComponentId()  
    int getHeight()  
    int getWidth()  
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • componentId

      protected java.lang.String componentId
    • width

      protected int width
    • height

      protected int height
  • Constructor Details

    • SetSizeCommand

      @Deprecated public SetSizeCommand()
      Deprecated.
      Only for Jackson deserialization. Use the other constructor instead.
    • SetSizeCommand

      public SetSizeCommand​(java.lang.String componentId, int width, int height)
  • Method Details