如何在我的eclipse应用程序中添加鼠标悬停功能?

时间:2011-07-22 17:02:32

标签: c eclipse eclipse-plugin

我有一个eclipse应用程序,用类似于C的语言编写。我想在我自动生成的文件中添加工具提示信息,例如,我有生成的文件:

// Comment Header for fast_user_action_rules.csd
//
// Action Rules

    // 'sorting the lsb'
    {
        0x0000, 0x0000, // 32-bit Data
        0x00020000,     // Repli/Fwd Port, Mod Rule
        0x01            // Action
    }

// End of fast_user_action_rules.csd

现在,当鼠标悬停在0x0002000上时,工具提示应该显示信息。谁知道如何实现这一目标?非常感谢您的帮助。谢谢!

1 个答案:

答案 0 :(得分:2)