Skip to content

Instantly share code, notes, and snippets.

@stolarczykt
Created January 25, 2020 06:28
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 stolarczykt/5d7fe855cb3024ead3614072a74167df to your computer and use it in GitHub Desktop.
Save stolarczykt/5d7fe855cb3024ead3614072a74167df to your computer and use it in GitHub Desktop.
Content coupling example
Class<?> clazz = Image.class;
Object imageInstance = clazz.newInstance();
Field descriptionField = imageInstance
.getClass().getDeclaredField("description");
descriptionField.setAccessible(true);
descriptionField
.set(imageInstance, "Pen Pineapple Apple Pen");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment