Skip to content

Instantly share code, notes, and snippets.

@dassiorleando
Created April 3, 2018 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dassiorleando/c6dcf843729f56b2854f0a969ab44964 to your computer and use it in GitHub Desktop.
Save dassiorleando/c6dcf843729f56b2854f0a969ab44964 to your computer and use it in GitHub Desktop.
public class ObjectB {
private String propB;
public ObjectB(String propB) {
this.propB = propB;
}
// Getters and setters
@Override
public String toString() {
return "ObjectB{" +
"propB='" + propB + '\'' +
'}';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment