package bluej.groupwork.actions;
import bluej.Config;
import bluej.groupwork.ui.HistoryFrame;
import bluej.pkgmgr.PkgMgrFrame;
| An action to show the repository history.
|
| @author Davin McCall
|
public class ShowLogAction
extends TeamAction{
public ShowLogAction()
{
super(Config.getString("team.history"), false);
}
@Override
public void actionPerformed(PkgMgrFrame pmf)
{
HistoryFrame hd = new HistoryFrame(pmf);
hd.setLocationRelativeTo(pmf.getFXWindow());
hd.show();
}
}
top,
use,
map,
class ShowLogAction
. ShowLogAction
. actionPerformed
22 neLoCode
+ 2 LoComm