get component's id in code
Hi everybody
excuse me, my english isn't very good
I use Jdeveloper 11.1.1.3.0
I need to get the Id of components related to a specified class in a bean.
for example in my page I have more than 10 InputFile componets and in code I should get the Id of these components and add them to a List.
I know that I can add one by one :
List<UIComponent> inputFile_comp = (List)new ArrayList<UIComponent>();
inputFile_comp.add(0, if1);
inputFile_comp.add(1, if2);
inputFile_comp.add(2, if3);
inputFile_comp.add(3, if4);
inputFile_comp.add(4, if5);
.
.
.
but I want to know that there is any way to take the entire InputFile's ids simultaneously and add them to a list?
Habib