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

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

Go to download

The jQAssistant Plugin Common provides a set of common classes which can be used by all jQAssistant plugins.

There is a newer version: 2.7.0
Show newest version
package com.buschmais.jqassistant.plugin.common.api.model;

import com.buschmais.jqassistant.core.store.api.model.Descriptor;
import com.buschmais.xo.api.annotation.Abstract;
import com.buschmais.xo.neo4j.api.annotation.Label;

/**
 * Represents a URI.
 */
@Label("URI")
@Abstract
public interface URIDescriptor extends Descriptor {

    String getUri();
    void setUri(String uri);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy