Codota Logo
I15dPanelBuilder.getLeadingColumn
Code IndexAdd Codota to your IDE (free)

How to use
getLeadingColumn
method
in
com.jgoodies.forms.builder.I15dPanelBuilder

Best Java code snippets using com.jgoodies.forms.builder.I15dPanelBuilder.getLeadingColumn (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ScheduledThreadPoolExecutor s =
  • Codota Iconnew ScheduledThreadPoolExecutor(corePoolSize)
  • Codota IconThreadFactory threadFactory;new ScheduledThreadPoolExecutor(corePoolSize, threadFactory)
  • Codota IconString str;new ScheduledThreadPoolExecutor(1, new ThreadFactoryBuilder().setNameFormat(str).build())
  • Smart code suggestions by Codota
}
origin: com.jgoodies/forms

/**
 * Returns the leading column. Unlike the superclass this method
 * honors the column offset.
 *
 * @return the leading column
 */
protected int getLeadingColumn() {
  int column = super.getLeadingColumn();
  return column + getLeadingColumnOffset() * getColumnIncrementSign();
}
origin: net.java.abeille/abeille

/**
 * Returns the leading column. Unlike the superclass this method honors the
 * column offset.
 * 
 * @return the leading column
 */
protected int getLeadingColumn() {
  int column = super.getLeadingColumn();
  return column + getLeadingColumnOffset() * getColumnIncrementSign();
}
origin: com.jgoodies/jgoodiesforms

/**
 * Returns the leading column. Unlike the superclass this method
 * honors the column offset.
 *
 * @return the leading column
 */
@Override
protected int getLeadingColumn() {
  int column = super.getLeadingColumn();
  return column + getLeadingColumnOffset() * getColumnIncrementSign();
}
origin: com.jgoodies/forms

/**
 * Adds a separator with the given text that spans all columns.
 *
 * @param text      the separator title text
 * @return the added titled separator
 */
public JComponent appendSeparator(String text) {
  ensureCursorColumnInGrid();
  ensureHasGapRow(paragraphGapSpec);
  ensureHasComponentLine();
  setColumn(super.getLeadingColumn());
  int columnSpan = getColumnCount();
  setColumnSpan(getColumnCount());
  JComponent titledSeparator = addSeparator(text);
  setColumnSpan(1);
  nextColumn(columnSpan);
  return titledSeparator;
}
origin: com.jgoodies/jgoodiesforms

/**
 * Adds a separator with the given text that spans all columns.
 *
 * @param text      the separator title text
 * @return the added titled separator
 */
public JComponent appendSeparator(String text) {
  ensureCursorColumnInGrid();
  ensureHasGapRow(paragraphGapSpec);
  ensureHasComponentLine();
  setColumn(super.getLeadingColumn());
  int columnSpan = getColumnCount();
  setColumnSpan(getColumnCount());
  JComponent titledSeparator = addSeparator(text);
  setColumnSpan(1);
  nextColumn(columnSpan);
  return titledSeparator;
}
origin: net.java.abeille/abeille

/**
 * Adds a separator with the given text that spans all columns.
 * 
 * @param text
 *            the separator title text
 * @return the added titled separator
 */
public JComponent appendSeparator(String text) {
  ensureCursorColumnInGrid();
  ensureHasGapRow(paragraphGapSpec);
  ensureHasComponentLine();
  setColumn(super.getLeadingColumn());
  int columnSpan = getColumnCount();
  setColumnSpan(getColumnCount());
  JComponent titledSeparator = addSeparator(text);
  setColumnSpan(1);
  nextColumn(columnSpan);
  return titledSeparator;
}
com.jgoodies.forms.builderI15dPanelBuildergetLeadingColumn

Popular methods of I15dPanelBuilder

  • addI15dLabel
    Adds an internationalized (i15d) textual label to the form using the specified constraints.
  • addI15dSeparator
    Adds an internationalized (i15d) titled separator to the form using the specified constraints.
  • addI15dTitle
    Adds a title to the form using the specified constraints.
  • addLabel
  • addSeparator
  • addTitle
  • getI15dString
    Looks up and returns the internationalized (i15d) string for the given resource key from the Resourc

Popular in Java

  • Reactive rest calls using spring rest template
  • getSupportFragmentManager (FragmentActivity)
  • notifyDataSetChanged (ArrayAdapter)
  • startActivity (Activity)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Pattern (java.util.regex)
    A compiled representation of a regular expression. A regular expression, specified as a string, must
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Runner (org.openjdk.jmh.runner)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now