1 package org.argeo.cms.ui.script;
2
3 import org.argeo.cms.ui.util.CmsTheme;
4 import org.osgi.framework.BundleContext;
5
6 /** @deprecated Use <code>CmsTheme</code> instead. */
7 @Deprecated
8 public class Theme extends CmsTheme {
9
10 public Theme(BundleContext bundleContext, String symbolicName) {
11 super(bundleContext, symbolicName);
12 }
13
14 public Theme(BundleContext bundleContext) {
15 super(bundleContext);
16 }
17
18 }