All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.commanding.PartialArgumentValue Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.commanding;

import org.yamcs.xtce.Argument;
import org.yamcs.xtce.PathElement;

/**
 * Holds values related to members of aggregates or arrays
 * 
 * @author nm
 *
 */
public class PartialArgumentValue extends ArgumentValue {
    final PathElement[] path;

    public PartialArgumentValue(Argument def, PathElement[] path) {
        super(def);
        this.path = path;
    }

    /**
     * The path to the element of the aggregate or array for which the value applies
     * 
     * @return
     */
    public PathElement[] getPath() {
        return path;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy