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

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

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

public interface PartialDescriptor {

    //Used to uniquely identify Objects with the
    //same name, i.e. Partial Methods/Classes etc.
    String getRelativePath();
    void setRelativePath(String path);

    boolean isPartial();
    void setPartial(boolean partial);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy