01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.admin.common;
05:
06: import java.awt.event.ActionEvent;
07:
08: public class ContactTerracottaAction extends XAbstractAction {
09: private String m_url;
10:
11: public ContactTerracottaAction(String label, String url) {
12: super (label);
13: m_url = url;
14: }
15:
16: public void actionPerformed(ActionEvent e) {
17: BrowserLauncher.openURL(m_url);
18: }
19: }
|