org.jqassistant.contrib.plugin.csharp.model.EnumValueDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqassistant.plugin.csharp Show documentation
Show all versions of jqassistant.plugin.csharp Show documentation
The jQAssistant plugin to scan and to analyze a CSharp instance.
The newest version!
package org.jqassistant.contrib.plugin.csharp.model;
import com.buschmais.jqassistant.plugin.common.api.model.ValueDescriptor;
import com.buschmais.xo.neo4j.api.annotation.Relation;
public interface EnumValueDescriptor extends TypedDescriptor, ValueDescriptor, EnumDescriptor {
@Relation("IS")
@Override
FieldDescriptor getValue();
@Override
void setValue(FieldDescriptor fieldDescriptor);
}