/plugin-module-codegen-engine/src/main/java/com/atlassian/plugins/codegen/modules/common/web/WebPanelProperties.java
https://bitbucket.org/mmeinhold/amps · Java · 36 lines · 26 code · 7 blank · 3 comment · 0 complexity · 433784af0deb33eaf72789bff9132097 MD5 · raw file
- package com.atlassian.plugins.codegen.modules.common.web;
- /**
- * @since 3.6
- */
- public class WebPanelProperties extends AbstractWebFragmentProperties
- {
- public static final String LOCATION = "LOCATION";
- public WebPanelProperties()
- {
- this("My Web Panel");
- }
- public WebPanelProperties(String moduleName)
- {
- super(moduleName);
- }
- public WebPanelProperties(String moduleName, String location)
- {
- this(moduleName);
- setLocation(location);
- }
- public void setLocation(String location)
- {
- setProperty(LOCATION, location);
- }
- public String getLocation()
- {
- return getProperty(LOCATION);
- }
- }