CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: grogger

Search: Search took 0.02 seconds.

  1. Re: Java Generics : How to pass object having generic type to another class?

    I found the solution :
    I used as it is written :
    class GUI {

    class ImagePanel<T> extends Node<T> { ... }
    class PanelManager { ... public void ImagePanel<T> getSleectedImagePanel(); }
    ...
  2. Re: Java Generics : How to pass object having generic type to another class?

    Sorry, "getSleectedImagePanel()" will be "getSelectedImagePanel()" :) I could not find where to edit my post...
  3. [RESOLVED] Java Generics : How to pass object having generic type to another class?

    I prepared a code using Java Generics to gain flexibility. I had one class named ImagePanel<T> extends Node<T> class that is also extends Panel (java.awt.Panel) class. The other class is PanelManager...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured