Skip to content

Instantly share code, notes, and snippets.

@tmaxxdd
Last active May 17, 2018 08:56
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 tmaxxdd/5a386276bb61bda765f02f6e0bcf5ed9 to your computer and use it in GitHub Desktop.
Save tmaxxdd/5a386276bb61bda765f02f6e0bcf5ed9 to your computer and use it in GitHub Desktop.
Generating sample data array with java
...
Topic[] items = new Topic[20];
for (int i = 0; i < items.length; i++){
items[i] = new Topic("Some topic", "Some description");
}
return items;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment