Hello, I am solving the following problem. I have a textfield with binding and I would like to display the bounded source property as a text while being in design time mode. Couldnt find any example I have no idea how to access binding properties of a current component. For example
class TextField extend JTextField{ private String text; //getter and setter
if(java.beans.Beans.isDesignTime()){ settext(//the bounded source); } }
Thaks for help Tomas