//All the device defined in deviceNameList are connected
if(m_deviceNameVector.size() == deviceNameList.length)
{
BindingTango.removeConnectionListener(this);
Device tmpDevice = null;
String[] tmpAttributeList = null;
Vector<String> tmpAttributeNameVector = new Vector<String>();
Enumeration<Device> enumeration = m_deviceNameVector.elements();
while (enumeration.hasMoreElements())
{
tmpDevice = (Device) enumeration.nextElement();
try
{
tmpAttributeList = tmpDevice.get_attribute_list();
}
catch (DevFailed e){}
for (int i = 0; i < tmpAttributeList.length; i++)
tmpAttributeNameVector.add(tmpDevice.get_name() + "/" + tmpAttributeList[i]);
}
Enumeration<String> tmpAttributeNameEnum = tmpAttributeNameVector.elements();
tmpAttributeList = new String[tmpAttributeNameVector.size()];
int tmpIndex = 0;