blob: 01ae84647caf8191f93227fdac31ce7ef6a4e27a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 The Eclipse Foundation 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:
* The Eclipse Foundation - initial API and implementation
* Yatta Solutions - bug 432803: public API
*******************************************************************************/
package org.eclipse.epp.internal.mpc.core.service;
import org.eclipse.epp.mpc.core.model.IPlatforms;
/**
* @author David Green
*/
public class Platforms implements IPlatforms {
protected java.util.List<String> platform = new java.util.ArrayList<String>();
public Platforms() {
}
public java.util.List<String> getPlatform() {
return platform;
}
public void setPlatform(java.util.List<String> platform) {
this.platform = platform;
}
}