blob: 1b6769914de1689c3e1bb9994a0ec55a48358220 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Oracle. 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:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.jaxb.core.internal.libprov;
import org.eclipse.jpt.common.core.internal.libprov.JptOsgiBundlesLibraryProviderInstallOperationConfig;
import org.eclipse.jpt.jaxb.core.libprov.JaxbLibraryProviderInstallOperationConfig;
import org.eclipse.jpt.jaxb.core.platform.JaxbPlatformDescription;
public class JaxbOsgiBundlesLibraryProviderInstallOperationConfig
extends JptOsgiBundlesLibraryProviderInstallOperationConfig
implements JaxbLibraryProviderInstallOperationConfig {
private JaxbPlatformDescription jaxbPlatform;
public JaxbOsgiBundlesLibraryProviderInstallOperationConfig() {
super();
}
public JaxbPlatformDescription getJaxbPlatform() {
return this.jaxbPlatform;
}
public void setJaxbPlatform(JaxbPlatformDescription jaxbPlatform) {
JaxbPlatformDescription old = this.jaxbPlatform;
this.jaxbPlatform = jaxbPlatform;
notifyListeners(PROP_JAXB_PLATFORM, old, jaxbPlatform);
}
}