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

org.jqassistant.contrib.plugin.csharp.model.PropertyDescriptor Maven / Gradle / Ivy

The newest version!
package org.jqassistant.contrib.plugin.csharp.model;

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

@SuppressWarnings("unused")
@Label(value = "Property")
public interface PropertyDescriptor extends MemberDescriptor, TypedDescriptor{

    boolean isReadOnly();
    void setReadOnly(boolean readOnly);

    boolean isRequired();
    void setRequired(boolean required);

    boolean isStatic();
    void setStatic(boolean s);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy