Tagged Questions
1
vote
2answers
147 views
Usage of Java Beans
I'm new to java so I'm asking this although thing here might be obvious. Whats the real life usage of Java Beans. They are defined as reusable software component ,but only examples I could find use ...
-2
votes
3answers
73 views
JavaBean values empty with sql
public void getEvent(String tableClick) {
Events e = new Events();
try {
pst = conn.prepareStatement("SELECT * FROM Event WHERE eventID='"+tableClick+"' ");
rs = ...
-3
votes
1answer
825 views
DTO and DAO concepts and MVC [closed]
1) Why do we use DTO and DAO, and when should we use them. I am developing a GUI Java software to do with inserting, editing, deleting data. But I am struggling to distinguish between DTO/DAO and ...
1
vote
1answer
167 views
java.lang.NullPointerException when populating Jtextfield using a bean class
Here is my class which is a gui consisting of two tabs, my profile and edit profile. I am having a problem at the 'myProfileTabStateChanged' method when the index value changes to 1. When tab index is ...
1
vote
1answer
104 views
Getter setter method for image type?
How could an image type be used in bean. My bean reflects a profile of a person which has a set of string and their profile picture. I am not sure about the type for the getter and setter methods for ...
0
votes
0answers
141 views
Java jTable: list of beans not updated
I'm playing with Netbeans JPA/Swing project.
I have a list of beans which is bound to JTable rows. The beans are database entity instances. Table is populated as expected.
So far so good. Now I want ...
0
votes
0answers
68 views
Which method to update component on data change?
I have a component which displays property of some (external) bean. I.e. bean is backing the component. Now I want to update picture periodically. Of course I can write my own method to update. But ...
1
vote
1answer
354 views
Save and load java GUI by using javaBeans Persistence mechanism
Here is the code that I save and load java GUI using javabeans.
import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import java.io.*;
import javax.swing.*;
public class BeansTest {
...
1
vote
1answer
265 views
Save java GUI by using javaBeans Persistence mechanism
I want to use JavaBeans Persistence mechanism to save my GUI to local disk. The problem that I faced is to save two frames at one time. Here is my code.
import java.awt.*;
import java.awt.event.*;
...
0
votes
2answers
238 views
Cannot edit table cell: Java Swing
I created a custom table using BeanTableModel as tableModel (not sure if this matters). The table populates data from an enum Object, and shoudl write to the object as well. Currently the behavior is ...
1
vote
1answer
283 views
Beans data binding does not update when firePropertyChange fires null
I am using Java Beans with
firePropertyChange(String propertyName, Object oldValue,
Object newValue)
to propagate data updates to my Swing GUI.
It works with every other value, but when ...
2
votes
1answer
227 views
How can I use a custom subclass of a Swing component? Do I need to install it to palette?
How can I add NewJPanel, a Netbeans generated class which extends JPanel, to the palette for the GUI builder?
The goal is to be able to add a NewJPanel through the palette so that it has type ...
3
votes
1answer
305 views
Java Binding bean to String empty property
I am trying to bind the visibility of a JLabel to whether the text of a JTextField is empty or not.
I want to do this because I want to hide the JLabel with a red asterisk, which denotes that ...
1
vote
1answer
269 views
java.awt.HeadlessException when calling JOptionPane.showMessageDialog in backing bean action method
I'm trying the following:
labelconfig.xhtml:
<h:form id="ok">
<h:commandButton value="click">
<f:ajax event="click" listener="#{canvasController.oeps}" />
...
0
votes
2answers
706 views
What is corresponding .net usercontrol in java?
For .net developers usercontrols are vital. I am trying to develop a java swing application. I want to create my custom "usercontrols", just like in .net. But there is no usercontrol :).
In some ...
0
votes
1answer
244 views
Making a PropertyEditor out of a Jtable
I have a JTree and the Nodes are a abstract class (Item) that extends DefaultMutableTreeNode. I want to be able to select the node in the JTree, then have all the variables of the subclass of Item in ...
1
vote
0answers
76 views
Dimension Editor doesn't work with my bean's customizer
I'm writing customizer class for my bean. My bean has two properties:
Color color
Dimension size
The source of my class:
public class MyBeanCustomizer extends JTabbedPane implements Customizer {
...
1
vote
2answers
218 views
Can the number of selectedElements in a JTable be bound?
I'd like to have a label or text field that has a number representing the number of rows selected in a JTable. I'm using Netbeans and have experimented with binding properties... There is a property ...
1
vote
1answer
259 views
Java => ActiveX component = Swing with no interaction
I'm creating a Java bean component and then generate it to ActiveX dll like in this tutorial
It is a Swing panel
public class AACWCSurvey extends javax.swing.JPanel
with couple JButtons
but when ...
5
votes
2answers
292 views
How to set a Java bean property as an expert property?
The Java Beans Introspection API includes in the PropertyDescriptor class the method isExpert. Bean-based GUI editors, like WindowsMaker, use this to hide or show "exotic" properties.
What causes a ...
2
votes
1answer
262 views
search java swing calendar appointement component
I am searching for a Java Swing calendar component that would allow adding schedule and reminder features, but MiG Calendar is too expensive. Here's a screenshot:
Any suggestion?
1
vote
1answer
106 views
Swing: Bean parametrizer?
Is there Swing component, that lets me paramtrize my bean class?
Example:
Let's have bean class with 4 fields (so we have setters and getters). I want to generate Swing JTextFields + JLabels with ...
0
votes
1answer
1k views
How to retrieve “${selectedElement}” from a JTable where the elements are bound to a List
In my application I have a JTable and a List.
The List:
The list is populated using a JPA query. The user can re-execute the query by changing attributes in the GUI. Let's assume the query has a ...
0
votes
1answer
166 views
java swing addTaskListener
I am new to java and have a swing task question.
Can I add a listener to a currently running task? For instance if something happens in doInBackGround I want to add a listener for finished and ...
1
vote
1answer
286 views
[java bean]hibernate Session breaks a java bean?
i have a simple JPanel bean in my projects, now i want to drag my panel bean class into my jframe.
My panel bean class is like this:
public class BeanPanel extends javax.swing.JPanel {
/** Creates ...
0
votes
1answer
559 views
Java - Custom PropertyEditorSupport to display units
All,
I'm trying to make the properties of my node have Units associated with the measure. ( I am using the JScience.org implementation of JSR 275) So for instance,
public class Robot extends ...
3
votes
5answers
1k views
Java Beans - creating an inspector window
I'm wondering whether there is an existing Java class that, given a Java bean, uses introspection to find all the publicly modifiable fields, and displays them using default PropertyEditors. I see a ...
1
vote
1answer
776 views
Can I use ObjectChangeListener to listen for changes on any object?
I've got an Integer called x; if it changes then i would like to update my table in a GUI. To listen to "x" I have tried
ChangeEvent y = new javax.swing.event.ChangeEvent(x);
and I implement ...
10
votes
4answers
4k views
Java date and calendar controls
Does anybody have any recommendations of good date pickers (either drop down calendars or small calendar components) for use in a Java Swing application - either beans or source code? They need to be ...
0
votes
3answers
1k views
How do I get my netbeans drag and drop widget to know whether it is rendering inside the netbeans design view window or the running application?
How do I get my netbeans drag and drop widget to know whether it is rendering inside the netbeans design view window or the running application?
I'm trying to do some custom rendering. I think it has ...
