`
dfgxpxz
  • 浏览: 14958 次
  • 性别: Icon_minigender_1
  • 来自: 北京
最近访客 更多访客>>
社区版块
存档分类
最新评论

定位 netbeans platform中的action并加以调用方法 发现drop的简便模式

阅读更多
  2008.01.20 : 学习DocumentEditorView例子:
  定位 netbeans platform中的action并加以调用方法:
          javax.swing.ActionMap actionMap = org.jdesktop.application.Application.getInstance(documenteditor.DocumentEditorApp.class).getContext().getActionMap(DocumentEditorView.class, this);


发现drop的简便模式:(MyFirstPalatte中发现)
        dropPanel.setDropTarget( new DropTarget( dropPanel, new DropTargetListener() {
            public void dragEnter(DropTargetDragEvent dtde) {
                doDragOver( dtde );
            }
            public void dragExit(DropTargetEvent dte) {
            }
            public void dragOver(DropTargetDragEvent dtde) {
                doDragOver( dtde );
            }
            public void drop(DropTargetDropEvent dtde) {
                doDrop( dtde );
            }
            public void dropActionChanged(DropTargetDragEvent dtde) {
            }
        }) );
       
Netbeans palatte 的tutorial:
http://platform.netbeans.org/tutorials/nbm-palette-api3.htm
分享到:
评论

相关推荐

    The Definitive Guide to NetBeans Platform 源代码

    《The Definitive Guide to NetBeans Platform》是关于NetBeans平台的一本权威指南,它深入讲解了这个开源的Java应用程序框架。NetBeans Platform是构建桌面应用程序的强大工具,它提供了丰富的功能,如模块化系统、...

    NetBeans.Platform.6.9.Developers.Guide

    他在德国出版了第一本关于 NetBeans Platform 的书籍,并随着 NetBeans Platform 的更新,继续为社区提供最新的技术指导。 - **贡献**: - **编写文档**:Jürgen Petri 为 NetBeans Platform 编写了大量高质量的...

    The.Definitive.Guide.to.NetBeans.Platform.7.pdf.rar

    4. **MVC模式**:学习如何在NetBeans Platform中应用Model-View-Controller设计模式,以分离业务逻辑、视图和数据模型,提高代码的可维护性。 5. **自动更新机制**:理解NetBeans Platform内置的自动更新机制,如何...

    Rich Client Programming Plugging into the NetBeans Platform

    《Rich Client Programming Plugging into the NetBeans Platform》是一本专注于NetBeans平台的富客户端应用程序开发的书籍。这本书全面深入地探讨了如何利用NetBeans平台构建功能丰富的、具有高性能的桌面应用。...

    NetBeans Platform for Beginners样章及全书代码

    NetBeans Platform for Beginners是2014年8月底才出版的书籍,与最新版的netbeans 8同步,目前还没有中文版及全书的电子版,只能找到样章。样章中,手把手地详解如何使用netbeans来开发应用及module,涉及到的概念...

    The Definitive Guide to NetBeans Platform 7

    《NetBeans平台7的终极指南》是一本深入探讨NetBeans平台第7版的全面书籍,旨在为开发者提供从基础知识到高级应用的全方位指导。NetBeans平台是一个强大的开发环境,广泛用于构建复杂的桌面、网络和企业级应用程序。...

    netbeans-platform7.pdf

    - **其他 IDE**:利用命令行 Maven 设置基于 Maven 的 NetBeans 平台项目,并在支持 Maven 的其他 IDE(如 IntelliJ IDEA 或 Eclipse)中打开 POM 文件进行开发。 **提示**:加入 NetBeans 平台邮件列表 dev@...

    《Rich Client Programming: Plugging into the NetBeans Platform》

    《富客户端编程:接入NetBeans平台》是一本深入探讨如何利用NetBeans Rich Client Platform (RCP) 开发桌面应用的专业书籍。NetBeans RCP是一个强大的框架,它为开发者提供了构建功能丰富的、可扩展的桌面应用程序的...

    NetBeans Platform 6.9 Developers Guide.zip

    《NetBeans Platform 6.9开发者指南》是Java富客户端应用程序开发的重要参考资料,它为开发者提供了深入理解并利用NetBeans RCP(Rich Client Platform)构建桌面应用的详尽指导。NetBeans RCP是一个强大的框架,它...

    The Definitive Guide to NetBeans Platform 7 源代码

    《NetBeans Platform 7 完全指南》源代码是一份宝贵的学习资源,它涵盖了构建基于Java的桌面应用程序的全面知识。NetBeans Platform 是一个强大的框架,专为开发可移植、模块化且用户友好的应用程序而设计。这个平台...

    NetBeans开发权威指南 NetBeans Platform Developer's Guide

    《NetBeans开发权威指南:NetBeans Platform Developer's Guide》是一本深入探讨NetBeans平台的专著,由Jürgen Petri撰写,于2010年首次出版。该书聚焦于NetBeans Platform 6.9版本,为读者提供了创建专业桌面富...

    The Definitive Guide to NetBeans Platform 2009

    本书覆盖的是NetBeans Platform 6.5版本。 #### 二、NetBeans平台结构 在第二章中,作者深入介绍了NetBeans平台的基本结构,包括核心组件、模块系统以及这些组件如何协同工作来构建复杂的应用程序。理解平台的架构...

    the definitive guide to netbeans platform

    The Definitive Guide to NetBeans™ Platform is a thorough and definitive introduction to the NetBeans Platform, covering all its major APIs in detail, with relevant code examples used throughout....

    JRuby+Netbeans开发攻略之用JRuby调用JFreeChart

    在本文中,我们将探讨如何使用JRuby和Netbeans进行开发,并着重讲解如何在JRuby环境中调用JFreeChart库来创建图表。JRuby是Java平台上的Ruby解释器,它允许Ruby开发者利用Java丰富的库资源,比如JFreeChart,这是一...

    NetBeans富客户端编程权威教程

    通过Lookup,开发者可以轻松地在应用程序的不同组件之间发现并使用服务,实现了模块化设计和松耦合。理解Lookup的工作原理和使用方法对于构建可扩展的NetBeans应用至关重要。 2. **Node和Explorer视图**:Node是...

    The Definitive Guide to NetBeans Platform

    ■CHAPTER 16 From Eclipse RCP to the NetBeans Platform . . . . . . . . . . . . . . . . . . 279 ■CHAPTER 17 Tips and Tricks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...

Global site tag (gtag.js) - Google Analytics