org.netbeans.swing.etable.TableColumnSelector Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.netbeans.swing.etable;
/**
* This class allows to supply alternative implementation of the column
* selection functionality in ETable.
*
* @author David Strupl
*/
public abstract class TableColumnSelector {
/**
* Presents the user vith a dialog allowing to select visible columns
* from the available column. The available columns are presented as
* a tree.
* @param root root of the displayed tree of the available columns
* @param selected the originally selected columns
* @return column names that are selected as visible columns
*/
public abstract String[] selectVisibleColumns(TreeNode root, String[] selected);
/**
* Presents the user vith a dialog allowing to select visible columns
* from the available column. The available columns are presented as
* a flat list.
* @param available all available column names
* @param selected the originally selected columns
* @return column names that are selected as visible columns
*/
public abstract String[] selectVisibleColumns(String[] available, String[] selected);
/**
* A node in the tree of available column names. Only the leaf nodes
* represent column names, the non-leaf nodes are categories which
* cannot be selected by the user.
*/
public interface TreeNode {
/**
* The text displayed to the user as a column name.
* @return The text displayed to the user as a column name.
*/
public String getText();
/**
* Non-leaf nodes will have children nodes.
* @return true if the node represents a column, false means a category
*
*/
public boolean isLeaf();
/**
* Children of this node.
* @return the array of children nodes, can return null if method
* isLeaf() returns true.
*/
public TreeNode[] getChildren();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy