]> git.argeo.org Git - lgpl/argeo-commons.git/blob - cms/script/Theme.java
Prepare next development cycle
[lgpl/argeo-commons.git] / cms / script / Theme.java
1 package org.argeo.cms.script;
2
3 import org.argeo.cms.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 }