Tabnine Logo
VisualizationUtils.setNimbusLookAndFeel
Code IndexAdd Tabnine to your IDE (free)

How to use
setNimbusLookAndFeel
method
in
org.sing_group.gc4s.visualization.VisualizationUtils

Best Java code snippets using org.sing_group.gc4s.visualization.VisualizationUtils.setNimbusLookAndFeel (Showing top 4 results out of 315)

origin: sing-group/GC4S

public static void main(String[] args) {
  setNimbusLookAndFeel();
  showComponent(new JScrollPane(getDemoTable()));
}
origin: sing-group/GC4S

public static void main(String[] args) {
  setNimbusLookAndFeel();
  showComponent(new JScrollPane(getDemoTable()));
}
origin: sing-group/GC4S

public static void main(String[] args)  {
  setNimbusLookAndFeel();
  showComponent(createButton(), "JButtonBuilder demo");
}
origin: sing-group/GC4S

public static void main(String[] args) throws IOException {
  downloadTestData();
  setNimbusLookAndFeel();
  try {
    // First, the GenomeIndex object required by the GenomeBrowser to
    // work is created.
    GenomeIndex genomeIndex = new PileLineGenomeIndex(
      PILELINE_INDEX_FILE);
    // Then, the GenomeBrowser is instantiated and visualized. Note that
    // it only requires a GenomeIndex to be created.
    GenomeBrowser genomeBrowser = new GenomeBrowser(genomeIndex);
    showComponent(genomeBrowser);
    // At this moment the GenomeBrowser is being shown and a new
    // sequence (chromosome) and positions range are set. Note that they
    // can also be established manually by the user trough the component
    // controls.
    genomeBrowser.setSequence("22");
    genomeBrowser.seekPositions(14880570, 18748443);
    // Finally, two files are programmatically added as tracks to the
    // GenomeBrowser. Again, note that they can be added by the user
    // through the component controls.
    sleep(1000);
    genomeBrowser.addTrack(BED_FILE);
    sleep(1000);
    genomeBrowser.addTrack(BAM_FILE);
  } catch (InterruptedException e) {
    e.printStackTrace();
  }
}
org.sing_group.gc4s.visualizationVisualizationUtilssetNimbusLookAndFeel

Javadoc

Sets the Nimbus look and feel.

Popular methods of VisualizationUtils

  • showComponent
    Shows a JFrame containing the specified component, title and frame extended state.
  • createPanelAndCenterComponent
    Returns a new JPanel with component in the center.
  • setNimbusKeepAlternateRowColor
    Sets the value of the property Nimbus.keepAlternateRowColor in UIManager.
  • showDialog
    Shows dialog and ends the application after it is closed.

Popular in Java

  • Making http post requests using okhttp
  • scheduleAtFixedRate (Timer)
  • getSystemService (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • JList (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now