All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.funfried.netbeans.plugins.editor.closeleftright.Installer Maven / Gradle / Ivy

Go to download

This plugin helps you to easily close unused or unwanted editor tabs. Instead of either close all tabs or all tabs except the currently selected you can also close the tabs right or left, the ones either belong or not belong to the project from the context menu of a selected tab at once or even all tabs that have not been changed since the last commit to your version control system (Git, SVN and Mercurial supported).

The newest version!
/**
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package de.funfried.netbeans.plugins.editor.closeleftright;

import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;

import de.funfried.netbeans.plugins.editor.closeleftright.yenta.Yenta;

public class Installer extends Yenta {
	private static final long serialVersionUID = -1116541188000901765L;

	@Override
	protected Set friends() {
		// Exposes an API, just not to us.
		return Collections.emptySet();
	}

	@Override
	protected Set siblings() {
		return new HashSet<>(Arrays.asList("org.netbeans.core.windows"));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy