blob: 17d54d029e7b89b76a3dd30ab213d91f9188fc5b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2008 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.runtime.registry.model;
public class BundleLibrary extends ModelObject {
private String library;
public String getLibrary() {
return library;
}
public void setLibrary(String name) {
library = name;
}
}