1 package com.atlassian.plugins.codegen.modules.common.web;
2
3 import com.atlassian.plugins.codegen.modules.BasicClassModuleProperties;
4
5 /**
6 * @since 3.6
7 */
8 public class WebPanelRendererProperties extends BasicClassModuleProperties
9 {
10
11 public WebPanelRendererProperties()
12 {
13 this("MyWebPanelRenderer");
14 }
15
16 public WebPanelRendererProperties(String fqClassName)
17 {
18 super(fqClassName);
19 }
20 }