blob: 927d0491d9d3e10cba76fb83ec0b0df273b82d30 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.ui.tests.views.properties.tabbed.text;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
import org.eclipse.jface.text.ITextSelection;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.views.properties.tabbed.ITabDescriptor;
import org.eclipse.ui.views.properties.tabbed.ITabDescriptorProvider;
/**
* A tab descriptor for the text test view.
*
* @author Anthony Hunter
*/
public class TextTestsTabDescriptorProvider implements ITabDescriptorProvider {
public ITabDescriptor[] getTabDescriptors(IWorkbenchPart part,
ISelection selection) {
if (selection instanceof ITextSelection) {
ITextSelection textSelection = (ITextSelection) selection;
if (textSelection.getLength() != 0) {
List result = new ArrayList();
StringTokenizer tokenizer = new StringTokenizer(textSelection
.getText());
while (tokenizer.hasMoreTokens()) {
result
.add(new TextTestsTabDescriptor(tokenizer
.nextToken()));
}
return (ITabDescriptor[]) result
.toArray(new ITabDescriptor[result.size()]);
}
}
return new ITabDescriptor[0];
}
}