List Icon
Mailing list Archive

2019 up to July 2022 | 20182017  |  2016  2015 2014 | 2013

The mailing list has been closed since July 2022, but continues to serve as an archive of information about QF-Test.
If you want to stay informed about news about QF-Test, you can simply subscribe to our newsletter:
Subscribe to Newsletter  


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[QF-Test] Name recognition with dynamic components


  • Subject: [QF-Test] Name recognition with dynamic components
  • From: MEVEL Clement <Clement.MEVEL@?.com>
  • Date: Thu, 21 Feb 2013 12:47:44 +0000

Hi all,

 

I have actually dynamic components that are created using a server object.

Here is the code:

"

                public EpsgParameterField(EpsgParameter parameter) throws IllegalArgumentException

                {

                               valueField = new JFormattedTextField();

                               valueField.setName("value field of "+parameter.getName());

                               unitLabel = new JLabel();

                               unitLabel.setName("unit of " +parameter.getName());

                               unitDisplay = UnitDisplay.SI_UNITY;

 

                               name = new JLabel(parameter.getName());

                               name.setName(parameter.getName());

                               this.parameter = parameter;

                }

"

I use in my QFT files only generic components recognized using names.

When I launch the client through QFT, the names are not taken into account. QFT still record them as:

“panelDynamicParameters.text1”, “panelDynamicParameters.text2” , etc…

 

QFT is it able to introspect the content of “parameter.getName())” to set the name?

 

Any idea?

 

Clement Mevel