Uses of Class
vooga.arcade.Location

Packages that use Location
testing.social.chat   
vooga.arcade   
vooga.arcade.components   
 

Uses of Location in testing.social.chat
 

Methods in testing.social.chat with parameters of type Location
 int ChatTest.addFlowLayoutTab(java.util.List<javax.swing.JComponent> components, java.lang.String tabTitle, Location location)
           
 int ChatTest.addFlowLayoutTab(java.util.List<javax.swing.JComponent> components, java.lang.String tabTitle, Location location, boolean isCloseable)
           
 void ChatTest.addTab(javax.swing.JComponent component, java.lang.String tabTitle, Location location)
           
 void ChatTest.addTab(javax.swing.JComponent component, java.lang.String tabTitle, Location location, boolean isClosable)
           
 java.awt.Dimension ChatTest.getDimension(Location location)
           
 void ChatTest.removeTab(java.lang.String tabTitle, Location location)
           
 

Uses of Location in vooga.arcade
 

Methods in vooga.arcade that return Location
static Location Location.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Location[] Location.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in vooga.arcade with parameters of type Location
 int IArcadeFrame.addFlowLayoutTab(java.util.List<javax.swing.JComponent> components, java.lang.String tabTitle, Location location)
          This method is called to add a new tab to the GUI with a flow layout.
 int ArcadeFrame.addFlowLayoutTab(java.util.List<javax.swing.JComponent> components, java.lang.String tabTitle, Location location)
           
 int IArcadeFrame.addFlowLayoutTab(java.util.List<javax.swing.JComponent> components, java.lang.String tabTitle, Location location, boolean isCloseable)
          This method is called to add a new tab to the GUI with a flow layout.
 int ArcadeFrame.addFlowLayoutTab(java.util.List<javax.swing.JComponent> components, java.lang.String tabTitle, Location location, boolean isCloseable)
           
 void IArcadeFrame.addTab(javax.swing.JComponent component, java.lang.String tabTitle, Location location)
          This method is called to add a new tab to the GUI.
 void ArcadeFrame.addTab(javax.swing.JComponent component, java.lang.String title, Location location)
           
 void IArcadeFrame.addTab(javax.swing.JComponent component, java.lang.String tabTitle, Location location, boolean isClosable)
          This method is called to add a new tab to the GUI.
 void ArcadeFrame.addTab(javax.swing.JComponent component, java.lang.String title, Location location, boolean isClosable)
           
 java.awt.Dimension IArcadeFrame.getDimension(Location location)
          This method is used to return the dimension of a given component.
 java.awt.Dimension ArcadeFrame.getDimension(Location location)
           
 void IArcadeFrame.removeTab(java.lang.String tabTitle, Location location)
          This method is called to remove a tab from the GUI.
 void ArcadeFrame.removeTab(java.lang.String title, Location location)
           
 

Uses of Location in vooga.arcade.components
 

Methods in vooga.arcade.components that return Location
 Location FlowLayoutTab.getTabLocation()
          Gets the tab location.
 

Constructors in vooga.arcade.components with parameters of type Location
FlowLayoutTab(java.util.List<javax.swing.JComponent> panels, java.lang.String title, Location location)
          Constructor for the tab to display the given JComponents.