PageRenderTime 38ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/bundles/plugins-trunk/CommonControls/common/gui/itemfinder/AbstractItemFinder.java

#
Java | 42 lines | 15 code | 4 blank | 23 comment | 0 complexity | 6e024c3cee09a7326aa1b67151acb213 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /*
  2. * AbstractItemFinder.java
  3. * :tabSize=8:indentSize=8:noTabs=false:
  4. * :folding=explicit:collapseFolds=1:
  5. *
  6. * Copyright Š 2011 Matthieu Casanova
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or any later version.
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20. */
  21. package common.gui.itemfinder;
  22. import javax.swing.*;
  23. /** An abstract ItemFinder, it has no label, default cellrenderer and width.
  24. * @author Matthieu Casanova
  25. */
  26. public abstract class AbstractItemFinder<E> implements ItemFinder<E>
  27. {
  28. @Override
  29. public String getLabel()
  30. {
  31. return null;
  32. }
  33. @Override
  34. public ListCellRenderer getListCellRenderer()
  35. {
  36. return null;
  37. }
  38. }