Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generic wrapped object #3

Open
victornoel opened this issue Apr 21, 2018 · 0 comments
Open

Generic wrapped object #3

victornoel opened this issue Apr 21, 2018 · 0 comments
Labels
enhancement New feature or request help wanted Extra attention is needed

Comments

@victornoel
Copy link
Owner

@GenerateEnvelope(generic = true)
public interface A {
  void meth();
}

should produce something like:

public abstract class AEnvelope<W extends A> implements A {
  protected final W wrapped;
  public AEnvelope(W wrapped) {
     this.wrapped = wrapped;
  }
  ... etc ...
}
@victornoel victornoel added help wanted Extra attention is needed enhancement New feature or request labels Apr 21, 2018
andreoss added a commit to andreoss/eo-envelopes that referenced this issue Jun 8, 2020
andreoss added a commit to andreoss/eo-envelopes that referenced this issue Jun 21, 2020
andreoss added a commit to andreoss/eo-envelopes that referenced this issue Jun 21, 2020
andreoss added a commit to andreoss/eo-envelopes that referenced this issue Jun 21, 2020
andreoss added a commit to andreoss/eo-envelopes that referenced this issue Jun 28, 2020
andreoss added a commit to andreoss/eo-envelopes that referenced this issue Jun 28, 2020
andreoss added a commit to andreoss/eo-envelopes that referenced this issue Jun 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant