Skip to content

Instantly share code, notes, and snippets.

@pavly-gerges
Last active April 8, 2023 09:18
Show Gist options
  • Save pavly-gerges/2fe95035aab7f116e868fb01a2f1305e to your computer and use it in GitHub Desktop.
Save pavly-gerges/2fe95035aab7f116e868fb01a2f1305e to your computer and use it in GitHub Desktop.
Generics in java
public class Wrapper {
private Object object;
public Wrapper(Object object) {
this.object = object;
}
public void setObject(Object object) {
this.object = object;
}
public Object getObject() {
return object;
}
}
@pavly-gerges
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment