plugin 1. for me a plugin in very much like a kernel module, can be complied into .so format(not .ko), and .so is a dll file.(a example of this is in /qwt-5.0.2/designer/plugin/designer/….so), or be compiled together with the main program(quit like a driver, ah?!) 2. in qt assitant/plugin howto, they lists out several kinds of plugins: database driver, many widgets together as a depe...
by happypeter - Linux文档专区 - 2008-04-12 08:14:31 阅读(449) 回复(0)
bufexplorer CCTree CRefVim cvim Engspchk EnhCommentify Mark minibufexpl NERD tree project SearchComplete SuperTab vcscommand TabBar taglist 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/58341/showart_1809971.html
public class Myplugin implements plugin { public Myplugin() { } public void destroy() { System.out.println("Myplugin is stoping!!!!!!!!!!!!!!!!!!!!!!!!!!"); } public void init(ActionServlet servlet, ModuleConfig config) throws ServletException { System.out.println("myplugin is starin...
public class Myplugin implements plugin { public Myplugin() { } public void destroy() { System.out.println("Myplugin is stoping!!!!!!!!!!!!!!!!!!!!!!!!!!"); } public void init(ActionServlet servlet, ModuleConfig config) throws ServletException { System.out.println("myplugin is staring!!!!!!!!!!!!!!!!!!!!!!!!!!"); 用于系统启动时加载信息 DBManage.context = servlet.getServletCont...
上网搜到说要安装libx11-dev,请问哪里可以下到,哪位大侠给传一个,谢谢
每一种操作系统都是由成千上万个不同种类的文件所组成的。其中有系统本身自带的文件,用户自己的文件,还有共享文件等等。我们有时候经常忘记某份文件放在硬盘中的哪个地方。在微软的windowS操作系统中要查找一份文件是相当简单的事情,只要在桌面上点击“开始”-“搜索”中就能按照各种方式在本地硬盘上,局域网络,甚至在INTERNET上查找各种文件,文档。 可是使用Linux的用户就没有那么幸运了,在Linux上查找某个文件确实是...
find / -amin -10 # 查找在系统中最后10分钟访问的文件 find / -atime -2 # 查找在系统中最后48小时访问的文件 find / -empty # 查找在系统中为空的文件或者文件夹 find / -group cat # 查找在系统中属于 groupcat的文件 find / -mmin -5 # 查找在系统中最后5分钟里修改过的文件 find / -mtime -1 #查找在系统中最后24小时里修改过的文件 find / -nouser #查找在系统中属于作废用户的文件 find / ...
find 用法:find [path...] [expression] 其中path缺省为./当前目录,expression缺省为-print 根据man页的描述,expression分为三部分:options,tests,actions options中包括 -daystart(for -amin,-atime,-cmin,-ctime,-mmin,-mtime)从当天开始计算时间,一般和括号中的参数合用,不过具体用途不明,貌似没有-daystart参数也是从命令执行时开始计算的。 -depth从最子层目录开始搜索 -follow排除symbolic links,等价-noleaf,一...
每一种操作系统都是由成千上万个不同种类的文件所组成的。其中有系统本身自带的文件,用户自己的文件,还有共享文件等等。我们有时候经常忘记某份文件放在硬盘中的哪个地方。在微软的windowS操作系统中要查找一份文件是相当简单的事情,只要在桌面上点击“开始”-“搜索”中就能按照各种方式在本地硬盘上,局域网络,甚至在INTERNET上查找各种文件,文档。 可是使用Linux的用户就没有那么幸运了,在Linux上查找某个文件确实是...