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; }
9293949596979899100101102
private List<ResourceReference> initThemes() { themes = new ArrayList<ResourceReference>(); themes.add(new WindowsTheme()); themes.add(new HumanTheme()); themes.add(new WebTheme()); theme = themes.get(0); return themes;