182183184185186187188189190191192
private List<Behavior> initThemes() { themes = new ArrayList<Behavior>(); themes.add(new WindowsTheme()); themes.add(new HumanTheme()); theme = themes.get(0); return themes; }
181182183184185186187188189190191
private List<Behavior> initThemes() { themes = new ArrayList<>(); themes.add(new WindowsTheme()); themes.add(new HumanTheme()); theme = themes.get(0); return themes; }