48495051525354555657
} @Override public Theme getTheme(String name, Theme.Type type) throws IOException { if (hasTheme(name, type)) { return new ClassLoaderTheme(name, type, getClass().getClassLoader()); } else { return null; } }
} @Override public Theme createTheme(String name, Theme.Type type) throws IOException { if (hasTheme(name, type)) { return new ClassLoaderTheme(name, type, getClass().getClassLoader()); } else { return null; } }
32333435363738394041