blob: 366efcbc97f47baffc69bb38b8c65519116069c0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2018 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.model;
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() {
}
@Override
public java.util.List<String> getPlatform() {
return platform;
}
public void setPlatform(java.util.List<String> platform) {
this.platform = platform;
}
}