org.jqassistant.contrib.plugin.csharp.model.FieldDescriptor 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.xo.neo4j.api.annotation.Label;
import com.buschmais.xo.neo4j.api.annotation.Property;
import com.buschmais.xo.neo4j.api.annotation.Relation;
@SuppressWarnings("unused")
@Label(value = "Field")
public interface FieldDescriptor extends MemberDescriptor, TypedDescriptor {
@Property("volatile")
boolean isVolatile();
void setVolatile(boolean volatileField);
@Relation("HAS")
PrimitiveValueDescriptor getValue();
void setValue(PrimitiveValueDescriptor valueDescriptor);
boolean isRequired();
void setRequired(boolean required);
boolean isStatic();
void setStatic(boolean s);
}