Uses of Class
org.openstreetmap.josm.tools.GBC

Packages that use GBC
org.openstreetmap.josm.gui.io   
org.openstreetmap.josm.gui.preferences.imagery   
org.openstreetmap.josm.gui.preferences.projection   
org.openstreetmap.josm.tools   
 

Uses of GBC in org.openstreetmap.josm.gui.io
 

Fields in org.openstreetmap.josm.gui.io declared as GBC
private static GBC LayerNameAndFilePathTableCell.defaultCellStyle
           
private static GBC SaveLayersTableColumnModel.RecommendedActionsTableCell.defaultCellStyle
           
 

Uses of GBC in org.openstreetmap.josm.gui.preferences.imagery
 

Methods in org.openstreetmap.josm.gui.preferences.imagery with parameters of type GBC
private  void ImageryPreference.addSettingsSection(javax.swing.JPanel p, java.lang.String name, javax.swing.JPanel section, GBC gbc)
           
 

Uses of GBC in org.openstreetmap.josm.gui.preferences.projection
 

Fields in org.openstreetmap.josm.gui.preferences.projection declared as GBC
private static GBC ProjectionPreference.projSubPrefPanelGBC
          The GridBagConstraints for the Panel containing the ProjectionSubPrefs.
 

Uses of GBC in org.openstreetmap.josm.tools
 

Methods in org.openstreetmap.josm.tools that return GBC
 GBC GBC.anchor(int a)
          Set the anchor of this GBC to a.
static GBC GBC.eol()
          Create the constraint for the last elements on a line.
static GBC GBC.eop()
          Create the constraint for the last elements on a line and on a paragraph.
 GBC GBC.fill()
          Try to fill both, horizontal and vertical
 GBC GBC.fill(int value)
          Set fill to the given value
 GBC GBC.grid(int x, int y)
           
 GBC GBC.insets(int left, int top, int right, int bottom)
          Adds insets to this GBC.
 GBC GBC.span(int width)
           
 GBC GBC.span(int width, int height)
           
static GBC GBC.std()
          Create a standard constraint (which is not the last).
static GBC GBC.std(int x, int y)
           
 GBC GBC.weight(double weightx, double weighty)
          Specifies how to distribute extra horizontal space.
 



JOSM