如何手动调用轮转中的操作?
对于我的生活,我似乎找不到有关Java Swing Actions的详细信息:'(当我遇到它们时,我立即意识到它们的有用性。到目前为止,这一切都很容易使用。现在我被困在一件小事上:如何手动运行它们?我的意思是代码?请注意,我正在使用 Netbeans 构建 GUI(如果这有什么区别的话)。我已经走到了:
Application a = Application.getInstance(JPADemoApp.class);
ApplicationContext ctx = a.getContext();
ActionMap am = ctx.getActionMap(JPADemoView.class, this.app);
Action act = am.get("fetchOrders");
(我写在单独的行上,以简化调试)
所以现在我有一个对操作的有效引用。现在我该如何运行它?