package bluej.pkgmgr.actions; import bluej.pkgmgr.PkgMgrFrame;
| Print command. Allow user to print any of the class diagram, source code, | and project "README". | * * @author Davin McCall * @version $Id: PrintAction.java 16081 2016-06-25 09:42:13Z nccb $ */ final public class PrintAction extends PkgMgrAction{ public PrintAction(PkgMgrFrame pmf) { | | super(pmf, "menu.package.print"); } public void actionPerformed(PkgMgrFrame pmf) { pmf.menuCall(); pmf.doPrint(); } }