1 package com.atlassian.plugins.codegen;
2
3
4
5
6
7 public class AmpsSystemPropertyVariable extends AbstractPropertyValue implements PluginProjectChange
8 {
9 public static AmpsSystemPropertyVariable ampsSystemPropertyVariable(String name, String value)
10 {
11 return new AmpsSystemPropertyVariable(name, value);
12 }
13
14 private AmpsSystemPropertyVariable(String name, String value)
15 {
16 super(name, value);
17 }
18
19 @Override
20 public String toString()
21 {
22 return "[systemPropertyVariable: " + super.toString() + "]";
23 }
24 }