001/* 002 * Copyright 2010-2015 Institut Pasteur. 003 * 004 * This file is part of Icy. 005 * 006 * Icy is free software: you can redistribute it and/or modify 007 * it under the terms of the GNU General Public License as published by 008 * the Free Software Foundation, either version 3 of the License, or 009 * (at your option) any later version. 010 * 011 * Icy is distributed in the hope that it will be useful, 012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 014 * GNU General Public License for more details. 015 * 016 * You should have received a copy of the GNU General Public License 017 * along with Icy. If not, see <http://www.gnu.org/licenses/>. 018 */ 019package icy.gui.component; 020 021/** 022 * @deprecated Use {@link icy.gui.component.sequence.SequenceChooser} instead. 023 */ 024@Deprecated 025public class SequenceChooser extends icy.gui.component.sequence.SequenceChooser 026{ 027 /** 028 * 029 */ 030 private static final long serialVersionUID = 5958250080388193463L; 031 032 public interface SequenceChooserListener extends icy.gui.component.sequence.SequenceChooser.SequenceChooserListener 033 { 034 035 } 036 037 public SequenceChooser(final int sequenceNameMaxLength, final boolean nullEntry, final boolean autoSelectIfNull, 038 final String nullEntryName) 039 { 040 super(sequenceNameMaxLength, nullEntry, autoSelectIfNull, nullEntryName); 041 } 042 043 public SequenceChooser(int maxLength, boolean nullEntry, boolean autoSelectIfNull) 044 { 045 super(maxLength, nullEntry, autoSelectIfNull); 046 } 047 048 public SequenceChooser(int maxLength, boolean nullEntry) 049 { 050 super(maxLength, nullEntry); 051 } 052 053 public SequenceChooser(int maxLength) 054 { 055 super(maxLength); 056 } 057 058 public SequenceChooser() 059 { 060 super(); 061 } 062}