The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
220 views

Is UI data binding in Java more trouble than it is worth?

I've spent some time recently learning and attempting to use various Java data-binding tools such as JGoodies, GlazedLists, JSR-295, etc. The problems that I've been trying to solve are not that ...
6
votes
2answers
399 views

Essential Swing libraries? JGoodies, JFreeChart [closed]

The wheel is invented over and over again - at least it seems so when looking at any average Swing GUI project. In many areas there are one or two very well known libraries for things not directly ...
3
votes
3answers
228 views

JTable in JScrollpane adjust height of the displayed component

I have a jtable within a jscrollpane. I use the jgoodies Form Layout and have put the scrollpane in a row that is set to "pref". This is how the table looks like right now: I am using swingx ...
2
votes
1answer
66 views
+50

Get preferred size of multi-line flowlayout

I can't figure out a way to resize some components in a swing GUI. Some custom labels are being added to a FlowLayout which doesn't behave how they should when resizing the dialog. The panel is being ...
2
votes
1answer
44 views

how to maximise component height using jgoodies forms

Noob question: I have the following Forms layout (please excuse the JRuby syntax). I'd like all three buttons to have their heights stretched to fill the available space. but only button 3 does so. ...
2
votes
0answers
69 views

What do these JGoodies FormLayout constraints mean?

What does the following code mean? FormLayout formLayout = new FormLayout("fill:5dlu:g, 5dlu, 20dlu", "pref"); I'm interested to know what the FormLayout attributes mean.
2
votes
1answer
170 views

JGoodies Maven plugin NullPointerException

I am doing a JGoodies GUI application using maven. The program successfully run on any idea, but when I created executible jar file with dependencies, jar file is also created successfully except ...
2
votes
3answers
311 views

Align Swing Components across Panels

We have a JPanel wich contains multiple JPanels wich contain JComponents (let's say JLabels and JTextboxes) Inside each of the internal JPanels we use JGoodies Layout in order to ensure proper ...
2
votes
2answers
107 views

How to change values of panel on selecting a row in a table : jgoodies

I am using Jgoodies binding to bind the table with my data. What listener i should implement so that when a cell is selected the values in a panel are changed. My model class of table extends ...
2
votes
2answers
220 views

Data binding library with support for generics and SWT/JFace?

JFace Databinding doesn't support generics, so it isn't particularly type-safe. And apparently it never will, since they wish to preserve Java 1.3 support. JGoodies supports generics since 2.0.0. Has ...
2
votes
1answer
145 views

jgoodies bindings + coalescing frequent changes

I have a java app that updates data at a variable rate (received from a fairly high-speed data stream out of my control, but up to 120Kbytes/sec), and I would like to display statistics like the # of ...
1
vote
1answer
26 views

How do I specify both a minimum and a maximum cell size with JGoodies FormLayout?

I want to specify that the size is 200dlu < preferred component size < 600dlu It's a basic three-column layout, where the middle column will be empty sometimes, but other times may have a very ...
1
vote
0answers
24 views

JGoodies Binding + constraints: how to achieve it?

I have a tough question which probably has an easy answer (I hope). I'm using JGoodies Binding to bind a slider to a ValueModel; works great. Suppose I have the following (contrived) situation, ...
1
vote
0answers
55 views

How do I use jGoodies Form Layout with Netbeans 7

I am using Java 1.6.0_29, with Ubuntu and Netbeans 7. I want to use the jGoodies Forms Layout with Netbeans. How do I get this working? I tried to add it as a layout manager for use with the builder ...
1
vote
1answer
40 views

JGoodies Forms Demo code

I must admit the fact Forms layout does save loads of time, wrt other Swing layouts. I did try out other examples from ...
1
vote
2answers
53 views

JGoodies for Android?

I looking for an UI plugin library for Android like what JGoodies is to Swing. It should be configurable with or without the library existing (meaning, if the library exists, it renders the UI ...
1
vote
1answer
101 views

what happened to the jgoodies binding tutorial code?

I want to learn how to use Jgoodies binding (since beans binding seems dead in the water, and so does its fork). the jgoosides binding docs refer to the tutorial source code, but this code is not ...
1
vote
2answers
98 views

Is JGoodies a good framework to use?

I've been looking into JGoodies for the last two hours and i don't seem to find a lot of good documentation on the subject. Not even on the JGoodies website. So it made me wondering of JGoodies is a ...
1
vote
1answer
107 views

How can I bind a property (e.g. an Enum) to a component property of a different type (e.g. an image for each Enum)?

I have inherited a project that uses JGoodies Binding to connect the domain model to the GUI. However, there are some inconsistencies that I have found which also cause some bugs. In this concrete ...
1
vote
3answers
184 views

Can a value from a JTextField be forced into the ValueModel (JGoodies)

I have this code: this.trigger = new Trigger(); this.presentationModel = new PresentationModel(this.personBean, this.trigger); final ValueModel firstNameAdapter = ...
1
vote
2answers
146 views

JGoodies Binding bug question about bufferedModels and keyboard input

I am using JGoodies Binding on a JTextField like so: trigger = new Trigger(); PresentationModel<SpectralControlsModel> adapter = new ...
1
vote
3answers
400 views

Why does insertUpdate get called in my DocumentListener when I change focus? (Java Swing)

I have a JTextField with a documentListener on it. I want to change the background color when I add or remove characters to this textfield. I should be using a document listener correct? It works, but ...
1
vote
1answer
124 views

How to bind a float or double with JGoodies

I have done binding with ints and longs with no probelems. I just use BasicComponentFactory.createIntegerField or LongField. There is no such thing for floats or doubles. Is there a way to do bind ...
1
vote
2answers
125 views

jgoodies how to remove component added with PanelBuilder?

I am using com.jgoodies.forms.builder.PanelBuilder to add Buttons and rows. Then I call PanelBuilder.getPanel() and attach the panel to a JPopupMenu. Is there a way to remove and reattach some of ...
1
vote
2answers
248 views

JGoodies list binding

Does the JGoodies list binding support binding list contents to a list object in the model? I know I can add listeners to the list model and domain model and coordinate changes between the two fairly ...
1
vote
1answer
996 views

jgoodies binding: using a JTextField with a formatted number?

I am trying to bind a JTextField to a bean's field that is a double using JGoodies Binding: JTextField myJTextField = ... BeanAdapter adapter = ... Bindings.bind(myJTextField, ...
1
vote
1answer
72 views

C++ bindings to jGoodies?

Thus far the best C++ UI libraries I've run into are Qt, GTK, and wxWidgets; Are there existing libraries similar to jGoodies or 'better'. I am interested in mature (yet simple) technologies.
1
vote
1answer
597 views

JGoodies memory leak?? - Out of Memory Exception when Spring tries to display the view

I am getting an Out of Memory exception sometimes during or after the validation of component happens. I was trying to profile a large validation result <= 20000, and it worked, so I went bigger. ...
1
vote
1answer
214 views

jgoodies bindings + indirect changes

I'm having a brain cramp trying to understand the appropriate way to use JGoodies bindings in my application. I have a class Article which is a bean that has read-only properties. Article is a ...
0
votes
1answer
35 views

jgoodies binding several jtoggle button

Hello i would like to bind 3 toggle button with my domain object. The 3 toggle should be mutually exclusive, if one of the 3 boolean property in my domain object is true, then the toggle ...
0
votes
0answers
21 views

JGoodies binding jtoggle button

i would like to bind to two jtoggle button with my model property, like radio button, which means when i select one toggle the other is deselected and vice versa. Thank you. Here is my solution, it ...
0
votes
0answers
44 views

jgoodies converter or bean adapter?

I have got an object that contains info to display on JLabels. Here is the object : public class InfoBean { private float info; private EnumInfoState enumInfoState; private PropertyChangeSupport ...
0
votes
0answers
27 views

Java JGoodies radio button problem

I have been using JGoodies for a long time now, but I find myself having a weird problem with radio buttons. My print statements show me that my bean is in the correct state when I fire property ...
0
votes
0answers
92 views

JGoodies as Netbeans Library

I added JGoodies binding jar in my project in netbeans. I'm trying to create a PropertyAdapter, but it is seen as a Ojbect by netbeans. The auto completion just show me method from the Object class. ...
0
votes
0answers
61 views

How can I bind a bean's inherited property using jgoodies binding framework?

I'm a total newb to data binding in GUI applications and I've been trying jgoodies PresentationModel to achieve it using Swing for a while. And, as long as I used it to bind form components to a bean ...
0
votes
2answers
765 views

Clearing Last Selected Value JCombobox when ComboBoxModel Becomes Empty

Here is a scenario: I have two JComboBoxes (call them combo1 and combo2 ) that get their values from a database[In the DB, these two have a 1:M relationship]. When the screen shows up I populate ...
0
votes
3answers
250 views

Creating maven Jar File contains JGoodies jar Problem [closed]

I created jar file with maven but there was an NullPointerException is thrown because I used jgoodies form I think. But an idea When the project is run, there is no exception is thrown. What is the ...
0
votes
1answer
220 views

Creating Executable Jar with Maven includes Jgoodies GUI

Im developing a java program and im using jgoodies for its GUI. I was making executable jar from my project, before developing GUI. It was working from command line. But when i developed gui for my ...
0
votes
1answer
165 views

how to handle focus lost and focus gain event using “shift + tab” and “tab”?

I want the ability to gain the focus on the next focusable component on clicking tab and to get the focus back on the previous component on shift + tab. So need a help on how to achieve the same. ...
0
votes
1answer
436 views

JGoodies HashMap

I'm trying to build a chart program using presentation model. Using JGoodies for data binding was relatively easy for simple types like strings or numbers. But I can't figure out how to use it on a ...
0
votes
1answer
716 views

Java + Jgoodies binding: radio button binding

I'm stumped... I'm trying to use JGoodies binding to bind a radiobutton to an Enum property. I can't seem to get it to work. Below is a simple example, it's a table of beans each with an immutable ...
-2
votes
1answer
73 views

JGoodies… FormLayout

Ok so i am trying to get a 3 JPanel JFrame where right and left panel have a fixed width but are vertically re-sizable and a center panel that can be re-sized both horizontally and vertically. Since ...