
com.buschmais.jqassistant.plugin.common.api.model.URIDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
The jQAssistant Plugin Common provides a set of common
classes which can be used by all jQAssistant plugins.
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