blob: 87305cacb6e85114766537a3acd9796fba2b9a12 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ats.world;
import java.util.Collection;
import org.eclipse.nebula.widgets.xviewer.customize.CustomizeData;
import org.eclipse.osee.ats.world.search.WorldSearchItem.SearchType;
import org.eclipse.osee.framework.db.connection.exception.OseeCoreException;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.ui.skynet.widgets.xnavigate.XNavigateComposite.TableLoadOption;
/**
* @author Donald G. Dunne
*/
public class WorldEditorSimpleProvider extends WorldEditorProvider {
private final String name;
private final Collection<? extends Artifact> artifacts;
public WorldEditorSimpleProvider(String name, Collection<? extends Artifact> artifacts) {
this(name, artifacts, null, TableLoadOption.None);
}
public WorldEditorSimpleProvider(String name, Collection<? extends Artifact> artifacts, CustomizeData customizeData, TableLoadOption... tableLoadOption) {
super(customizeData, tableLoadOption);
this.name = name;
this.artifacts = artifacts;
}
/* (non-Javadoc)
* @see org.eclipse.osee.ats.world.IWorldEditorProvider#copy(org.eclipse.osee.ats.world.IWorldEditorProvider)
*/
@Override
public IWorldEditorProvider copyProvider() {
return new WorldEditorSimpleProvider(name, artifacts, customizeData, tableLoadOptions);
}
/* (non-Javadoc)
* @see org.eclipse.osee.ats.world.IWorldEditorProvider#run(org.eclipse.osee.ats.world.WorldEditor)
*/
@Override
public void run(WorldEditor worldEditor, SearchType searchtype, boolean forcePend) throws OseeCoreException {
worldEditor.getWorldComposite().load(name, artifacts, customizeData, getTableLoadOptions());
}
/* (non-Javadoc)
* @see org.eclipse.osee.ats.world.IWorldEditorProvider#getName()
*/
@Override
public String getName() throws OseeCoreException {
return name;
}
}