Search in sources :

Example 36 with SingleChoiceParameterValue

use of au.gov.asd.tac.constellation.plugins.parameters.types.SingleChoiceParameterType.SingleChoiceParameterValue in project constellation by constellation-app.

the class SingleChoiceParameterType method setOptionsData.

/**
 * Set the collection of options for the given parameter from a list of
 * {@link ParameterValue} objects.
 *
 * @param parameter A {@link PluginParameter} of this type.
 * @param options A list of {@link ParameterValue} objects to set as the
 * options for the given parameter.
 */
public static void setOptionsData(final PluginParameter<SingleChoiceParameterValue> parameter, final List<? extends ParameterValue> options) {
    final SingleChoiceParameterValue parameterValue = parameter.getParameterValue();
    // Clear the existing selection
    parameter.setObjectValue(null);
    parameterValue.setOptionsData(options);
    parameter.setProperty(CHOICES, new Object());
}
Also used : SingleChoiceParameterValue(au.gov.asd.tac.constellation.plugins.parameters.types.SingleChoiceParameterType.SingleChoiceParameterValue)

Example 37 with SingleChoiceParameterValue

use of au.gov.asd.tac.constellation.plugins.parameters.types.SingleChoiceParameterType.SingleChoiceParameterValue in project constellation by constellation-app.

the class TestParameterBuildingPlugin method createParameters.

@Override
public PluginParameters createParameters() {
    final PluginParameters params = new PluginParameters();
    final PluginParameter<SingleChoiceParameterValue> fupChoiceParam = SingleChoiceParameterType.build(CHOICE_PARAMETER_ID);
    fupChoiceParam.setName(SOME_CHOICE_NAME);
    fupChoiceParam.setDescription(SOME_CHOICE_DESCRIPTION);
    SingleChoiceParameterType.setOptions(fupChoiceParam, Arrays.asList("Choice 1", "Choice 2", "Choice 3"));
    SingleChoiceParameterType.setChoice(fupChoiceParam, "Choice 1");
    params.addParameter(fupChoiceParam);
    final PluginParameter<LocalDateParameterValue> ldParam = LocalDateParameterType.build(LOCALDATE_PARAMETER_ID);
    ldParam.setName("Date");
    ldParam.setDescription("Pick a day");
    params.addParameter(ldParam);
    final PluginParameter<IntegerParameterValue> lenParam = IntegerParameterType.build(INT_PARAMETER_ID);
    lenParam.setName(SOME_INT_NAME);
    lenParam.setDescription(SOME_INT_DESCRIPTION);
    lenParam.setIntegerValue(5);
    params.addParameter(lenParam);
    final PluginParameter<FloatParameterValue> thresholdParam = FloatParameterType.build(FLOAT_PARAMETER_ID);
    thresholdParam.setName(FLOAT_NAME);
    thresholdParam.setDescription(FLOAT_DESCRIPTION);
    thresholdParam.setFloatValue(0F);
    FloatParameterType.setMinimum(thresholdParam, 0);
    FloatParameterType.setMaximum(thresholdParam, 1);
    FloatParameterType.setStep(thresholdParam, 0.1F);
    params.addParameter(thresholdParam);
    final PluginParameter<BooleanParameterValue> caseParam = BooleanParameterType.build(BOOLEAN_PARAMETER_ID);
    caseParam.setName(SOME_BOOLEAN_NAME);
    caseParam.setDescription(SOME_BOOLEAN_DESCRIPTION);
    params.addParameter(caseParam);
    for (int i = 0; i < 2; i++) {
        final PluginParameter<StringParameterValue> text = StringParameterType.build("text" + i);
        text.setName("Some text " + i);
        text.setDescription("Type some text into this thing");
        text.setStringValue("Value " + i);
        params.addParameter(text);
    }
    return params;
}
Also used : LocalDateParameterValue(au.gov.asd.tac.constellation.plugins.parameters.types.LocalDateParameterType.LocalDateParameterValue) FloatParameterValue(au.gov.asd.tac.constellation.plugins.parameters.types.FloatParameterType.FloatParameterValue) StringParameterValue(au.gov.asd.tac.constellation.plugins.parameters.types.StringParameterValue) BooleanParameterValue(au.gov.asd.tac.constellation.plugins.parameters.types.BooleanParameterType.BooleanParameterValue) IntegerParameterValue(au.gov.asd.tac.constellation.plugins.parameters.types.IntegerParameterType.IntegerParameterValue) PluginParameters(au.gov.asd.tac.constellation.plugins.parameters.PluginParameters) SingleChoiceParameterValue(au.gov.asd.tac.constellation.plugins.parameters.types.SingleChoiceParameterType.SingleChoiceParameterValue)

Aggregations

SingleChoiceParameterValue (au.gov.asd.tac.constellation.plugins.parameters.types.SingleChoiceParameterType.SingleChoiceParameterValue)37 PluginParameters (au.gov.asd.tac.constellation.plugins.parameters.PluginParameters)29 ArrayList (java.util.ArrayList)21 PluginParameter (au.gov.asd.tac.constellation.plugins.parameters.PluginParameter)19 BooleanParameterValue (au.gov.asd.tac.constellation.plugins.parameters.types.BooleanParameterType.BooleanParameterValue)13 IntegerParameterValue (au.gov.asd.tac.constellation.plugins.parameters.types.IntegerParameterType.IntegerParameterValue)12 StringParameterValue (au.gov.asd.tac.constellation.plugins.parameters.types.StringParameterValue)9 ParameterChange (au.gov.asd.tac.constellation.plugins.parameters.ParameterChange)8 Map (java.util.Map)8 ReadableGraph (au.gov.asd.tac.constellation.graph.ReadableGraph)6 MultiChoiceParameterValue (au.gov.asd.tac.constellation.plugins.parameters.types.MultiChoiceParameterType.MultiChoiceParameterValue)6 LinkedHashMap (java.util.LinkedHashMap)5 Test (org.testng.annotations.Test)5 Graph (au.gov.asd.tac.constellation.graph.Graph)4 FloatParameterValue (au.gov.asd.tac.constellation.plugins.parameters.types.FloatParameterType.FloatParameterValue)4 DualGraph (au.gov.asd.tac.constellation.graph.locking.DualGraph)3 ParameterValue (au.gov.asd.tac.constellation.plugins.parameters.types.ParameterValue)3 GraphElementType (au.gov.asd.tac.constellation.graph.GraphElementType)2 WritableGraph (au.gov.asd.tac.constellation.graph.WritableGraph)2 SchemaTransactionType (au.gov.asd.tac.constellation.graph.schema.type.SchemaTransactionType)2