org.sonar.plugins.visualstudio.VisualStudioProject Maven / Gradle / Ivy
/*
* Analysis Bootstrapper for Visual Studio Projects
* Copyright (C) 2014 SonarSource
* [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.plugins.visualstudio;
import javax.annotation.Nullable;
import java.util.List;
/**
* All information related to Visual Studio projects which can be extracted only from a project file.
* Should not be mixed with information gathered from solution files.
*/
public class VisualStudioProject {
private final List files;
private final String outputType;
private final String assemblyName;
private final List propertyGroupConditions;
private final List outputPaths;
public VisualStudioProject(List files, @Nullable String outputType, @Nullable String assemblyName, List propertyGroupConditions, List outputPaths) {
this.files = files;
this.outputType = outputType;
this.assemblyName = assemblyName;
this.propertyGroupConditions = propertyGroupConditions;
this.outputPaths = outputPaths;
}
public List files() {
return files;
}
@Nullable
public String outputType() {
return outputType;
}
@Nullable
public String assemblyName() {
return assemblyName;
}
public List propertyGroupConditions() {
return propertyGroupConditions;
}
public List outputPaths() {
return outputPaths;
}
}