Skip to content

Instantly share code, notes, and snippets.

@KowalczykBartek
Created January 7, 2014 22:33
Show Gist options
  • Save KowalczykBartek/8308186 to your computer and use it in GitHub Desktop.
Save KowalczykBartek/8308186 to your computer and use it in GitHub Desktop.
...
...
private List<String> lista = new ArrayList<>();
@PostConstruct
public void init(){
lista.add("1");
lista.add("2");
lista.add("3");
}
public List<String> getLista(){
return lista;
}
...
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment