
com.almworks.jira.structure.api2g.v2.InteractionParameterValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
package com.almworks.jira.structure.api2g.v2;
/**
* @author pashky
*/
public class InteractionParameterValue {
private final Object myValue;
private final String myIconHtml;
private final String myExplanation;
private final boolean myPossible;
public InteractionParameterValue(Object value, String iconHtml, String explanation, boolean possible) {
myValue = value;
myIconHtml = iconHtml;
myExplanation = explanation;
myPossible = possible;
}
public Object getValue() {
return myValue;
}
public String getIconHtml() {
return myIconHtml;
}
public String getExplanation() {
return myExplanation;
}
public boolean isPossible() {
return myPossible;
}
@Override
public String toString() {
return "(" + myValue + ", " + myExplanation + ", " + myPossible + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy