blob: dbbeb561efffc60a7a05a931ca1f23ceab45d1db [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.framework.ui.skynet.search;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.skynet.core.artifact.Branch;
import org.eclipse.osee.framework.skynet.core.artifact.search.ArtifactQuery;
/**
* @author Roberto E. Escobar
*/
final class IdArtifactSearch extends AbstractLegacyArtifactSearchQuery {
private List<String> idsToSearch;
private Branch branchToSearch;
private boolean allowDeleted;
IdArtifactSearch(String searchString, Branch branchToSearch, boolean allowDeleted) {
super();
this.idsToSearch = new ArrayList<String>();
this.branchToSearch = branchToSearch;
this.allowDeleted = allowDeleted;
this.idsToSearch.addAll(Arrays.asList(searchString.split("[\\s,]+")));
}
/* (non-Javadoc)
* @see org.eclipse.osee.framework.ui.skynet.search.AbstractArtifactSearchQuery#getArtifacts()
*/
@Override
public Collection<Artifact> getArtifacts() throws Exception {
return ArtifactQuery.getArtifactsFromIds(idsToSearch, branchToSearch, allowDeleted);
}
/* (non-Javadoc)
* @see org.eclipse.osee.framework.ui.skynet.search.AbstractArtifactSearchQuery#getCriteriaLabel()
*/
@Override
public String getCriteriaLabel() {
return String.format("%s%s", idsToSearch.toString(), allowDeleted ? " - Options:[Include Deleted]" : "");
}
}