com.buschmais.jqassistant.plugin.common.api.model.ValueDescriptor Maven / Gradle / Ivy
The newest version!
package com.buschmais.jqassistant.plugin.common.api.model;
import com.buschmais.xo.neo4j.api.annotation.Label;
/**
* Interface for value descriptors.
*
* @param
* The value type.
*/
@Label("Value")
public interface ValueDescriptor extends NamedDescriptor {
/**
* Set the value.
*
* @param value
* The value.
*/
void setValue(V value);
/**
* Return the value.
*
* @return The value.
*/
V getValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy