blob: 81905ae9b3136c116efedefdc4d1ad1c0d93d658 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 SAP AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* SAP AG - initial API and implementation
*******************************************************************************/
package org.eclipse.tycho.packaging;
/**
* plexus value object for mojo parameter
*/
public class SourceReferences {
private boolean generate = false;
private String customValue = null;
public boolean shouldGenerate() {
return generate;
}
public void setGenerate(boolean generate) {
this.generate = generate;
}
public String getCustomValue() {
return customValue;
}
public void setCustomValue(String customValue) {
this.customValue = customValue;
}
}