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

com.buschmais.jqassistant.plugin.common.api.model.PropertyDescriptor Maven / Gradle / Ivy

The newest version!
package com.buschmais.jqassistant.plugin.common.api.model;

import com.buschmais.xo.neo4j.api.annotation.Label;
import com.buschmais.xo.neo4j.api.annotation.Property;

/**
 * Represents a property value.
 */
@Label("Property")
public interface PropertyDescriptor extends ValueDescriptor {

    @Property("value")
    @Override
    String getValue();

    @Override
    void setValue(String value);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy