| Author |
Component number inside GridLayout.
|
Heinrich Umdelin
Greenhorn
Joined: Apr 07, 2009
Posts: 1
|
|
Hello.
I have a 6x6 GridLayout with JButtons inside a JFrame. Now there is a method getComponent(int i) wich will give you the i'th Component counting from top left corner down. I seem to remember (maybe wrongly) that there is a method which will return
this component number for Component. But searching the docs for eg AbstractButton comes up with nothing. Pointers ?
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32694
|
|
Welcome to JavaRanch
I went to the API index -> G -> ctrl-F -> "getComponent" but I couldn't find a method called "getComponentNumber". Nor could I find such a method in Container or Component.
It seems non-object-oriented that a child Component know which order it was added to a parent Component/Container. It would be the parent Component/Container which ought to know that.
There are methods like getComponents() which return all the child Components (presumably as Component[]); they might help.
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8439
|
|
|
In addition to what Campbell said, you can also use getComponentCount() and getComponentAt(int index).
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
 |
|
|
subject: Component number inside GridLayout.
|
|
|