1   package com.atlassian.plugins.codegen.modules.common.web;
2   
3   /**
4    * @since 3.6
5    */
6   public class WebPanelProperties extends AbstractWebFragmentProperties
7   {
8   
9       public static final String LOCATION = "LOCATION";
10  
11      public WebPanelProperties()
12      {
13          this("My Web Panel");
14      }
15  
16      public WebPanelProperties(String moduleName)
17      {
18          super(moduleName);
19      }
20  
21      public WebPanelProperties(String moduleName, String location)
22      {
23          this(moduleName);
24          setLocation(location);
25      }
26  
27      public void setLocation(String location)
28      {
29          setProperty(LOCATION, location);
30      }
31  
32      public String getLocation()
33      {
34          return getProperty(LOCATION);
35      }
36  }