vote up 2 vote down star

So, I have some code that looks approximately like (truncated for brevity - ignore things like the public member variables):

  public class GenericThingy<T> {
    private T mValue;
    public final T[] mCandidates;

    public GenericThingy(T[] pCandidates, T pInitValue) {
      mCandidates = pCandidates;
      mValue = pInitValue;
    }

    public void setValue(T pNewValue) {
      mValue = pNewValue;
    }
  }

  public class GenericThingyWidget {

    private final GenericThingy<?> mThingy;
    private final JComboBox mBox;

    public GenericThingyWidget (GenericThingy<?> pThingy) {
      mThingy = pThingy;
      mBox = new JComboBox(pThingy.mCandidates);
      //do stuff here that makes the box show up
    }

    //this gets called by an external event
    public void applySelectedValue () {
      mThingy.setValue(mBox.getSelectedItem());
    }
  }
}

My problem is that the mThingy.setValue(mBox.getSelectedItem()); call generates the following error:

The method setValue(capture#4-of ?) in the type Generics.GenericThingy<capture#4-of ?> is not applicable for the arguments (Object)

I can get around this by removing the <?> from the declaration of mThingy and pThingy in GenericThingyWidget - which gives me a "GenericThingy is a raw type. References to GenericThingy should be parameterized" warning.

I also tried replacing the setValue call with

mThingy.setValue(mThingy.mCandidates[mBox.getSelectedIndex()]);

which I genuinely expected to work, but that produced a very similar error:

The method setValue(capture#4-of ?) in the type Generics.GenericThingy<capture#4-of ?> is not applicable for the arguments (capture#5-of ?)

Is there any way to do this without generating "raw type" warnings ("unchecked cast" warnings I'm OK with) and without making GenericThingyWidget into a generic type? I'd think I could cast the return of mBox.getSelectedItem() to something, but I can't figure out what that would be.

As a bonus question, why does the replacement call to mThingy.setValue not work?

flag

5 Answers

vote up 2 vote down check

I see two possibilities.

With a private addition to GenericThingyWidgetGoetz's capture helper pattern:

public void applySelectedValue() {
  helper(mThingy, mBox.getSelectedIndex());
}

private static <T> void helper(GenericThingy<T> pThingy, int pIndex) {
  pThingy.setValue(pThingy.mCandidates[pIndex]);
}

Or, quick-and-dirty, with a modification to the API of GenericThingy:

public void setValue(int value) {
  mValue = mCandidates[value];
}


As a bonus question, why does the replacement call to mThingy.setValue not work?

The article by Brian Goetz probably explains this better than I will, but I'll give it a try.

mThingy.setValue(mThingy.mCandidates[mBox.getSelectedIndex()]);

The compiler knows that mThingy has some type parameter, but it doesn't know what the that type is, because it is a wildcard. It creates a placeholder for this type—"capture#4-of ?". The compiler also knows that mCandidates has some type, but it doesn't know what it is either. It creates brand new "capture" type—"capture#5-of ?" While you and I can reason that these should be the same type, the compiler (at least for now) can't jump to that conclusion. Thus, you get the error message.

The capture helper gets around that. Although the compiler doesn't know what the type is, it knows it has a type, so it allows you to pass it to the helper method. Once inside the helper method, there are no wildcards, and the compiler doesn't have to do any reasoning about whether the wildcards really refer to the same type.

link|flag
Thanks for the good answer, and the useful link! It still seems odd to me that the compiler can't figure out that two separate wildcards from the same object should have the same capture-of, but at least that explains why it doesn't work. – Sbodd Sep 4 at 14:00
vote up 0 vote down

As KLE said, You can just de-parameterize GenericThingy (replace all the T's with objects). In fact, I think you have to unless you plan to pass the class of T to the constructor of GenericThingyWidget, and then dynamically cast from your mbox.getSelectedItem(), since as far as I can tell, getSelectedItem() only returns Object.

link|flag
vote up 0 vote down

What you need to to is parameterize GenericThingyWidget like so:

public class GenericThingyWidget<T> {

private final GenericThingy<? super T> mThingy;
private final JComboBox mBox;

public GenericThingyWidget (GenericThingy<? super T> pThingy) {
  mThingy = pThingy;
  mBox = new JComboBox(pThingy.mCandidates);
  //do stuff here that makes the box show up
}

//this gets called by an external event
public void applySelectedValue () {
  mThingy.setValue((T) mBox.getSelectedItem());
 }
}
}

Technically, you don't need the ? super T for your example, and would be fine with just a T, and perhaps it would be better in real code if you ever want to get from the GenericThingy instead of just inserting into it.

link|flag
"... without making GenericThingyWidget into a generic type" – sylvarking Sep 3 at 20:47
Thanks, I missed that - read the question to quickly. – Yishai Sep 3 at 20:53
vote up 2 vote down

You lack information in GenericThingyWidget. The ? you put means : any class extending object. Which means any, not some particular one but I don't know which one. Java can't relate one ? to another, they can not be related one to the other in a class hierarchy tree. So

mThingy.setValue(mThingy.mCandidates[mBox.getSelectedIndex()]);

this tries to put an object of any class in the setValue, which is waiting for any other class, but the ? can not tell Java these two any should be the same class.

Without parameterizing GenericThingyWidget, I don't see any way to work around it.

What I would do : parameterize GenericThingyWidget, and create a Factory static parameterized method :

public static <T> GenericThingyWidget<T> make(T someObject){
    ...
}
link|flag
"... without making GenericThingyWidget into a generic type" – sylvarking Sep 3 at 20:46
Sorry I can't make any wish come true... Other people have given possibilities to avoid the warnings. My solution is clean, I don't pretend it's best for OP, just another track that he may not have thought of. – subtenante Sep 3 at 20:50
vote up 1 vote down

Update

OK, try this:

  public class GenericThingy<T> {
    private Class<T> mClazz;
    private T mValue;
    public final T[] mCandidates;

    public GenericThingy(Class<T> clazz, T[] pCandidates, T pInitValue) {
      mClazz = clazz;
      mCandidates = pCandidates;
      mValue = pInitValue;
    }

    public void setValue(Object newValue) throws ClassCastException {
      mValue = mClazz.cast(newValue);
    }
  }
link|flag
Those mean the same thing. – Yishai Sep 3 at 20:31
@Yishai: Yes, but in previous versions of Java there were some issues with using just a bare <?>, IIRC. Any any case, I've changed my answer now to something different. – Daniel Pryden Sep 3 at 20:39
Hmmm... looks like a workaround for removing the annoying warning, but does not really follow a strict achitecture. – subtenante Sep 3 at 20:40
1  
This is not a case where the annoying Class instance is necessary. – sylvarking Sep 3 at 20:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.