/*
ItsNat Java Web Application Framework
Copyright (C) 2007 Innowhere Software Services S.L., Spanish Company
Author: Jose Maria Arranz Santamaria
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. See the GNU Affero General Public
License for more details. See the copy of the GNU Affero General Public License
included in this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.itsnat.impl.comp;
import javax.swing.DefaultListSelectionModel;
import javax.swing.ListSelectionModel;
import javax.swing.event.ListSelectionListener;
/**
*
* @author jmarranz
*/
public class EmptyListSelectionModelImpl extends DefaultListSelectionModel
{
public static final ListSelectionModel SINGLETON = new EmptyListSelectionModelImpl();
/** Creates a new instance of EmptyListSelectionModelImpl */
public EmptyListSelectionModelImpl()
{
}
public void setSelectionInterval(int index0, int index1)
{
}
public void addSelectionInterval(int index0, int index1)
{
}
public void removeSelectionInterval(int index0, int index1)
{
}
public void setAnchorSelectionIndex(int index)
{
}
public void setLeadSelectionIndex(int index)
{
}
public void clearSelection()
{
}
public void insertIndexInterval(int index, int length, boolean before)
{
}
public void removeIndexInterval(int index0, int index1)
{
}
public void setValueIsAdjusting(boolean valueIsAdjusting)
{
}
public void setSelectionMode(int selectionMode)
{
}
public void addListSelectionListener(ListSelectionListener x)
{
}
public void removeListSelectionListener(ListSelectionListener x)
{
}
public void setLeadAnchorNotificationEnabled(boolean flag)
{
}
}
|