gpt4 book ai didi

java - 如何以编程方式触发 ComponentListener?

转载 作者:行者123 更新时间:2023-12-01 12:16:28 24 4
gpt4 key购买 nike

有什么方法可以以编程方式触发 ComponentListener 吗?例如,请查看下面的代码快照。

    private class DisplayAllRevenue extends ComponentAdapter
{
@Override
public void componentShown(ComponentEvent e)
{
}
}

allRevenueJScrollPane.addComponentListener(new DisplayAllRevenue());

我创建了一个 ComponentListener 并将其附加到 JScrollPane 中。现在我也需要使用我自己的代码手动触发它。我该怎么做?一旦发生 JComboBox 事件,我需要触发此代码。这意味着,用户选择年份或其他内容,然后触发此代码...我需要基于此触发很多 ComponentListeners 。这些都是繁重的数据库调用,会将数据输入不同的屏幕,因此,我不会使用 ItemStateChanged

中的整套代码

最佳答案

您声明:

I have created a ComponentListener and attached it into a JScrollPane. Now I need to fire this manually using my own code too. How can I do it? I need to fire this code once JComboBox event has occured. That means, user selects year or something and this code is then fired...

响应 JComboBox 选择事件的标准方法是使用 ItemListener 或 ActionListener。

There are lot of ComponentListeners I need to fire based on this. These are all heavy database calls which will feed data into different screens, therefore, I am not gonna use the entire set of code inside ItemStateChanged

我在上面的声明中没有看到任何建议我创建类似尝试人为触发 ComponentListener 的拼凑行为。如果您有更强有力的理由,则必须告诉我们,否则规范的答案不是这样做,而是使用我上面提到的标准监听器。

假设您的程序结构大致接近 MVC 设计,请注意,您的组合框选择可以触发您的 Control 类更改模型,并且模型更改可能很重要,或者可能对 View 的多个组件产生重大影响,这些组件他们自己正在聆听模型的状态,我认为这确实是您想要做的。

<小时/>

编辑
您声明:

The reason why I am trying to fire this manually is this. I have JTabbedPane. There are 5 tabs. In every tab, there is a table,which takes its data from the database. The SQL Queries I use to feed the data into tables are extremely heavy, some even join 5-6 tables together. That is why I can't fire the all 5 SQL Queries (for all 5 tables) at once, bcs I am afraid it will fail. If I have a component listener, they will only call the SQL code appropriate to the current displaying table. The SQL code takes parameters. Years. That is why the combobox is there.

当然,这是你的程序,你可以按照你希望的任何方式构建它,但如果是我的程序,我会主要针对 MVC 结构,这样我可以更轻松地单独调试各个组成部分,并且能够进行 mock 之类的事情。当然,您可以在您的 Comopnent 上调用 getComponentListeners() ,然后根据需要通过创建自己的 ComopnentEvent 然后调用每个监听器的 componentXXX(ComponentEvent cEvt) 方法来触发它们,但我担心这会导致难以发现错误以及测试和升级程序的困难。您决定触发哪种组件通知方法?当 JVM 适本地触发相同的方法时,程序应该做什么?

我想知道您是否将模型和 View 混合在一起。我想知道是否更好的是抽象出模型——支撑整个程序并从那里开始工作的业务逻辑。应该通知模型,从而了解当前正在显示的表格,同样,当年份发生变化时,控件会通知它。然后模型可以从数据库请求更新,当然是在后台线程中,我相信是由控件完成的。然后该数据将被发送回模型。该 View 将在模型中具有监听器,以通知其更改,然后它将更改当前显示的表的显示。

如果您绝对必须使用基于 GUI 的监听器,那么请使用 PropertyChangeListener,因为每个 GUI 组件都对该监听器具有固有的支持,并且通过创建自己的绑定(bind)属性,您将创建一个不应与其他 GUI 行为或状态。

关于java - 如何以编程方式触发 ComponentListener?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26967020/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com