blob: 27851a435366b669ced863b0541860c5921d7312 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.sse.ui.internal.editor;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
import org.eclipse.wst.sse.core.internal.provisional.IndexedRegion;
/**
* This class/interface was part of an experimental API that was added to a
* public package in version bundle version 1.5.
*
* @deprecated - use {@link org.eclipse.wst.sse.ui.SelectionConverter}
*/
public class SelectionConvertor {
/**
* @param model
* @param start
* @param end
* @return the most specific mapping of this text selection to
* implementors of IndexedRegion
*/
public Object[] getElements(IStructuredModel model, int start, int end) {
Object[] localSelectedStructures = null;
if (model != null) {
IndexedRegion region = model.getIndexedRegion(start);
if (region != null) {
if (end <= region.getEndOffset()) {
// single selection
localSelectedStructures = new Object[1];
localSelectedStructures[0] = region;
}
else {
// multiple selection
int maxLength = model.getStructuredDocument().getLength();
List structures = new ArrayList(2);
while (region != null && region.getEndOffset() <= end && region.getEndOffset() < maxLength) {
structures.add(region);
region = model.getIndexedRegion(region.getEndOffset() + 1);
}
localSelectedStructures = structures.toArray();
}
}
}
if (localSelectedStructures == null) {
localSelectedStructures = new Object[0];
}
return localSelectedStructures;
}
}