Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
伙计们,我将 SelectEvent 作为参数传递给一个方法(用于 ajax 目的)。现在我如何在另一个方法中调用该方法。?
一般来说,您可以像调用 java 中的任何其他方法一样调用它。但是,如果方法依赖于选择事件,例如触发事件的组件,则必须小心。
如果该方法不依赖于 SelectionEvent,您可以像这样调用它
mySelectionListener(null);
或者你创建一个新的 SelectionEvent
SelectionEvent myEvent = new SelectionEvent(); mySelectionListener(myEvent);