Uses of Class
com.atlassian.gadgets.GadgetState

Packages that use GadgetState
com.atlassian.gadgets This package contains the main APIs for interacting with gadgets. 
com.atlassian.gadgets.dashboard This package contains the main APIs for interacting with dashboards and gadgets. 
com.atlassian.gadgets.spec Contains classes related to Gadgets' Specification XML. 
com.atlassian.gadgets.view Contains classes related to the rendering and display of gadgets. 
 

Uses of GadgetState in com.atlassian.gadgets
 

Methods in com.atlassian.gadgets that return GadgetState
 GadgetState GadgetState.Builder.build()
          Returns the final constructed GadgetState
 

Methods in com.atlassian.gadgets with parameters of type GadgetState
static GadgetState.Builder GadgetState.gadget(GadgetState state)
          Factory method which allows you to create a new GadgetState object based on an existing GadgetState.
 

Constructors in com.atlassian.gadgets with parameters of type GadgetState
GadgetState.Builder(GadgetState state)
           
 

Uses of GadgetState in com.atlassian.gadgets.dashboard
 

Methods in com.atlassian.gadgets.dashboard that return types with arguments of type GadgetState
 Iterable<? extends Iterable<GadgetState>> DashboardState.getColumns()
          Returns an immutable Iterable of the columns in this DashboardState (which contain the GadgetStates).
 Iterable<GadgetState> DashboardState.getGadgetsInColumn(DashboardState.ColumnIndex column)
          Returns an immutable Iterable of the GadgetStates in the given column.
 

Methods in com.atlassian.gadgets.dashboard with parameters of type GadgetState
 DashboardState DashboardState.appendGadgetToColumn(GadgetState gadgetState, DashboardState.ColumnIndex index)
          Returns a new DashboardState built with the same data as this, except that the column with index index has had a new gadget added to its bottom
 DashboardState DashboardState.prependGadgetToColumn(GadgetState gadgetState, DashboardState.ColumnIndex index)
          Returns a new DashboardState built with the same data as this, except that the column with index index has had a new gadget added to its top
 

Method parameters in com.atlassian.gadgets.dashboard with type arguments of type GadgetState
 DashboardState.Builder DashboardState.Builder.columns(Iterable<? extends Iterable<GadgetState>> columns)
          Set the columns of the DashboardState under construction and return this Builder to allow further construction to be done.
 

Uses of GadgetState in com.atlassian.gadgets.spec
 

Methods in com.atlassian.gadgets.spec with parameters of type GadgetState
 GadgetSpec GadgetSpecFactory.getGadgetSpec(GadgetState gadgetState, GadgetRequestContext gadgetRequestContext)
          Create a GadgetSpec from a GadgetState
 

Uses of GadgetState in com.atlassian.gadgets.view
 

Methods in com.atlassian.gadgets.view that return GadgetState
 GadgetState GadgetRenderingException.getGadgetState()
           
 

Methods in com.atlassian.gadgets.view with parameters of type GadgetState
 URI RenderedGadgetUriBuilder.build(GadgetState gadgetState, ModuleId moduleId, View view, GadgetRequestContext gadgetRequestContext)
          Returns the URL to the rendered gadget.
 URI RenderedGadgetUriBuilder.build(GadgetState gadgetState, View view, GadgetRequestContext gadgetRequestContext)
          Deprecated. as of 2.0, use RenderedGadgetUriBuilder.build(GadgetState, ModuleId, View, GadgetRequestContext)
 boolean GadgetViewFactory.canRenderInViewType(GadgetState state, ViewType viewType, GadgetRequestContext gadgetRequestContext)
          Returns true if the gadget represented by state can be rendered with the given ViewType for the locale specified in the GadgetRequestContext.
 ViewComponent GadgetViewFactory.createGadgetView(GadgetState state, ModuleId moduleId, View view, GadgetRequestContext gadgetRequestContext)
          Returns a ViewComponent that will render the GadgetState, customizing the view based on the Locale specified in the GadgetRequestContext and the desired ViewType.
 ViewComponent GadgetViewFactory.createGadgetView(GadgetState state, View view, GadgetRequestContext gadgetRequestContext)
          Deprecated. as of 2.0, use GadgetViewFactory.createGadgetView(com.atlassian.gadgets.GadgetState, ModuleId, View,com.atlassian.gadgets.GadgetRequestContext)
 String SecurityTokenFactory.newSecurityToken(GadgetState state, String viewer)
          Create a new security token for the gadget.
 

Constructors in com.atlassian.gadgets.view with parameters of type GadgetState
GadgetRenderingException(GadgetState gadget, Throwable cause)
           
GadgetRenderingException(String message, GadgetState gadget)
           
GadgetRenderingException(String message, GadgetState gadget, Throwable cause)
           
 



Copyright © 2013 Atlassian. All Rights Reserved.