1 package org.opentrafficsim.editor;
2
3 /**
4 * Class that groups some information on an option for a choice node, relevant to show to the user.
5 * <p>
6 * Copyright (c) 2023-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
8 * </p>
9 * @author <a href="https://github.com/wjschakel">Wouter Schakel</a>
10 * @param optionNode option node.
11 * @param choice choice node, the option node is one of its options.
12 * @param selected whether this option is currently selected.
13 */
14 public record XsdOption(XsdTreeNode optionNode, XsdTreeNode choice, boolean selected)
15 {
16 }