Questions tagged [nimbus]

Nimbus is a polished cross-platform look and feel introduced in the Java SE 6 Update 10 (6u10) release of the Java platform. Nimbus uses Java 2D vector graphics to draw the user interface, rather than static bitmaps, so the UI can be crisply rendered at any resolution.

Nimbus is a polished cross-platform look and feel introduced in the Java SE 6 Update 10 (6u10) release of the Java platform. Nimbus uses Java 2D vector graphics to draw the user interface, rather than static bitmaps, so the UI can be crisply rendered at any resolution. Nimbus is highly customizable. You can use the Nimbus look and feel as is, or you can skin (customize) the look with your own brand.

340 questions
2
votes
1 answer

JButton background on Nimbus LAF

I use Nimbus LAF and I want to change the background of a simple JButton. JButton jbutton = new JButton("test"); jbutton.setBackground(Color.BLACK); But it doesn't work, when I change the look and feel it works but it doesn't work in Nimbus. How…
Ali
  • 75
  • 1
  • 8
2
votes
2 answers

How to decode JWT token to get details of Header and Payload using nimbus-jose-jwt?

I have the following JWT token that I want to…
PAA
  • 1
  • 46
  • 174
  • 282
2
votes
1 answer

How to invalidate cache of RemoteJWKSet in nimbus-jose-jwt

We are making use of RemoteJWKSet in nimbus-jose-jwt third party library for JWKS endpoint based JWT validation. With RemoteJWKSet, we can retrieve the JWKS from a remote endpoint and the retrieved JWK set is cached in order to to minimize network…
sathya
  • 523
  • 1
  • 4
  • 18
2
votes
1 answer

How to override background color for disabled JPanel

In Java Swing application, I am using nimbus look and feel. I try to override JPanel background color (enabled or disabled) without success. Doc oracle, Nimbus Defaults -> Search "Panel.background". I instantiate the JPanel like this: JPanel panel =…
Stéphane Millien
  • 3,238
  • 22
  • 36
2
votes
4 answers

NullPointerException at javax.swing.plaf.synth.SynthContext.getPainter

A Java Swing program I work on keeps getting the exception below. It happens at random times and is far from reproducible. It does not seem to usually cause any problem other than on time action events are not triggered but usually even after this…
startoftext
  • 3,846
  • 7
  • 40
  • 49
2
votes
1 answer

Could not find leader nimbus from seed hosts storme V1.2.1 in centos

I have installed Storm on a Centos machine. When I start my Storm cluster, I am getting the following error: org.apache.storm.utils.NimbusLeaderNotFoundException: Could not find leader nimbus from seed hosts [127.0.0.1]. Did you specify a valid…
Sellamani
  • 436
  • 4
  • 7
2
votes
3 answers

Mixing look and feel

So far I have this public static void main(String[] args) { try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); UIManager.getBorder("design");//change look and feel here? }…
Kyle
  • 3,004
  • 15
  • 52
  • 79
2
votes
1 answer

I want to run apache storm in local mode but I cannot activate the UI

As it says I can activate nimbus and supervisor without issues but for some reason the UI gets completely stuck when I run nimbus ui. The following is my error message org.apache.storm.utils.NimbusLeaderNotFoundException: Could not find leader…
Mnemosyne
  • 1,162
  • 4
  • 13
  • 45
2
votes
2 answers

Nimbus JTree presentation error under java version 1.8

right now I am establishing the Nimbus Look and Feel to an Application which is already in use for some time. The Application contains some JTrees which I want to have to display vertical and horizontal lines. Under java version 1.7 which I used…
Demli95
  • 136
  • 1
  • 12
2
votes
1 answer

Is there any way to tell Storm Nimbus to start a topology in particular supervisor?

I have a storm cluster (1.0.2 version) set up and 5 topologies are up and running in it. Among 2 of them are cpu intensive and memory intensive topologies. While submitting topologies, i want those 2 processor should run in separate supervisors in…
Kutty
  • 39
  • 3
2
votes
0 answers

Multiple Supervisor Not Visible on Storm UI

We are trying to set up apache storm multi node cluster using 4 machines . Below are their config files as we use them currently: a) Zookeeper Server : 10.135.155.133(running on windows 7) b) Nimbus Host : 10.135.158.22 (running on centos) c)…
2
votes
1 answer

JButton doesn't darken icon when pressed with Nimbus LaF

I create some buttons with only their image visible: public static JButton createImageButton(ImageIcon image) { JButton btn = new JButton(image); btn.setContentAreaFilled(false); btn.setBorder(BorderFactory.createEmptyBorder(5, 5, 5,…
Marek
  • 263
  • 1
  • 5
  • 13
2
votes
1 answer

Remove JCombobox border inside JTable

I have removed the arrow button from the JComoboBox to make it look like a JTextField and added it as a celleditor. The purpose is it create an AutoSuggest(not AutoComplete) JTable cell. On Doing that the border kinda looks irking.How to change the…
Madhan
  • 5,750
  • 4
  • 28
  • 61
2
votes
0 answers

Customization of JFileChooser using UI Manager and Nimbus

I am trying to override the Nimbus default color scheme of JFileChooser. I am using the following snippet to do that: try { for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { …
DevX
  • 490
  • 6
  • 23
2
votes
1 answer

Background color of JSpinner with Nimbus

Has anyone already succeeded in changing the background colour of the editor of a JSpinner styled with Nimbus ? I tried different options I found here on StackOverflow. None of them worked. I summarised them here below. 1) basically using…
lvr123
  • 524
  • 6
  • 24