PageRenderTime 40ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/bundles/plugins-trunk/InfoViewer/infoviewer/actions/home.java

#
Java | 46 lines | 20 code | 8 blank | 18 comment | 3 complexity | b2f9e619da2a4408bf26cf79dd7fac33 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. * home.java - open homepage action for InfoViewer
  3. * Copyright (C) 1999 2000 Dirk Moebius
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. package infoviewer.actions;
  20. import java.awt.event.ActionEvent;
  21. import org.gjt.sp.jedit.jEdit;
  22. import org.gjt.sp.jedit.GUIUtilities;
  23. import infoviewer.InfoViewer;
  24. public class home extends InfoViewerAction {
  25. private static final long serialVersionUID = 2183528446575469446L;
  26. public home() {
  27. super("infoviewer.home");
  28. }
  29. public void actionPerformed(ActionEvent evt) {
  30. String home = jEdit.getProperty("infoviewer.homepage");
  31. InfoViewer viewer = getViewer(evt);
  32. if (home == null) {
  33. GUIUtilities.error(viewer, "infoviewer.error.nohome", null);
  34. } else {
  35. viewer.gotoURL(home, true, 0);
  36. }
  37. }
  38. }