Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8916223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T05:11:03+00:00 2026-06-15T05:11:03+00:00

This is a two part question. First, is it possible use a generic defined

  • 0

This is a two part question. First, is it possible use a generic defined objects method such as:

public class MyClass<T>{

    public MyClass(T t){
        t.setText("Hello World"); // Assume class T is JMenuIten has the special method setText
    }

}

This code doesn’t work as is, but show the general idea for what I’m aiming for. I want to use the methods which are particular to that encapsulated object. If however I were to pass in another object such as which contains the encapsulated method .doSomething. I would like to do …

public class MyClass<T>{

    public MyClass(T t){
        t.doSomething("Hello World"); // Assume class T is JMenuIten has the special method setText
    }

}

I’m hoping that it is possible to do this, otherwise I would have to write multiple constructors to take care of all my special cases.

My second question is similar in that I would like to return a GUI component and execute a statement such as …

myJPanel.getComponent(1).setText("Hello"); // Assuming index 1 is a JLabel and setText is a specific method defined in the JLabel class

This code does not work because the compiler cannot tell ahead of time what symbols will be needed at runtime, though I was hoping that there was a way of making things like this work. I would also like to know if there is a method that can tell me what class type .getComponent() is returning if that is possible. I’m trying to make code as dynamic as possible without having to hardcode everything.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T05:11:04+00:00Added an answer on June 15, 2026 at 5:11 am

    You have to use a bounded wildcard.

    e.g.

    public interface MyObject {
        void myMethod();
    }
    
    public class GenericObj<T extends MyObject> {
        private T t;
    
        public void invokeMethod() {
            t.myMethod(); //this way you can invoke methods (declcared in MyObject) on T
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is really a two part question. First, is it possible to detect if
This is a two-part question: First, I am interested to know what the best
This is a two part question. The first is how do you properly close
This is a two part question, but I want to make sure the first
This is kinda....a two part question. The first one is much more important than
This is a two part question. Is it possible to take advantage of xVal
This is a two part question from a WPF animation newbie. First, here is
This is a two-part question: Does the first code section below (produced by Adobe
This is a two part question. The first part is converting the function below
This is a two part question. The first question is. I am looking for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.