`
dadi520
  • 浏览: 144746 次
  • 性别: Icon_minigender_1
  • 来自: 重庆
社区版块
存档分类
最新评论
文章列表
DependencyManagementSection 204 line     滚动面板 的demo http://www.blogjava.net/liaojiyong/archive/2010/06/30/157093.html     http://cai555.iteye.com/blog/465096     mysql 下载地址   http://download.csdn.net/source/1081642   swing播放动画 http://d.download.csdn.net/down/1959789/jinhaize   swing ...
Summary From beginning on the Eclipse platform was designed for extensibility. Therefore nearly every aspect of the workbench's user interface has a corresponding contribution mechanism. While the Eclipse workbench has evolved from a pure IDE to the RCP platform a big zoo of of extension APIs was ...
<extension         id="product"         point="org.eclipse.core.runtime.products">      <product            application="com.aptana.ide.rcp.application"            name="Aptana Studio">         <property               name="aboutText"   ...

GC 的使用

 
Control, Devices, Images 1. 创建一个 或者 维持一个 GC 2. drawing 3 . 销毁 GC GC gc = new GC(display); gc.drawRectangle(...); gc.drawText(...); gc.drawImage(...); gc.dispose(); swt 使用两维 坐标系, 以(0,0)为原点, 从左到右, 从上到下递增 PaintEvent ...
KeyEvent character  (Ctrl  + A , 代表的是A字符) The Unicode value of the character (e.g., \u0041 for A) keyCode  (Ctrl + A ,  代表的是 sWT.CTRL A constant indicating which key was pressed (e.g., SWT.PAGE_UP) stateMask (Ctrl + A, 当没有按下 A 时, 是0, 按下后是Ctrl The "state mask" representing keyboard modifier ...
http://ltc603.iteye.com/blog/30207           http://langhua9527.iteye.com/blog/395244     http://chinaxxren.iteye.com/blog/701297     http://hoocy.iteye.com/blog/327066   http://www.iteye.com/wiki/topic/360994       public String getToolTipText(MouseEvent e) {  // TODO Auto-generate ...
一, 线程的生命周期 1. Wating state一旦线程被构造, 但是还没有执行任何代码, 那么它就处于 waiting state,  其他的线程可以与之交互, 还可以设置不同的属性, 如priority, name, daemon status 等.一旦一个线程 处于 waiting,  它的state 可以被其他的 线程 所改变   2. Alive state如果线程的start() 方法被调用, 则线程可能正在运行状态中,  可以调用isAlive方法进行判断 3. Terminating Thread在run() 执行完后, 线程会结束掉当然我们可以调用System.ex ...
今天看了下, 用了eclipse 源码构造了一个demo          super(parent, style);        this.setUseHashlookup(true);        this.getTable().setLayoutData(new GridData(SWT.FILL, SWT.FILL, true,            true, 1, 1));        this.getTable().setHeaderVisible(true);        this.getTable().setLinesVisible(true);        th ...
最近用到了swt 编写界面, 就下了个swt Designer拖控件, 用起来不错,放几个文档先
一, What is a Perspective?  A perspective is a visual container for a set of views and editors (parts),  A perspective is also like a page within a book.  It exists within a window along with any number of other perspectives and, like a page within a book, only one perspective is visible at any time. ...
原文请看: http://www.eclipse.org/articles/Article-Using%20Images%20In%20Eclipse/Using%20Images%20In%20Eclipse.html   一 eclipse Image 的分类    1. org.eclipse.swt.graphics.Image, 代表一个重量级的对象,它在内存中处理数据, 它持有一个底层OS资源的一个句柄, 如果你不需要它时, 一定要手动关闭。    2. org.eclipse.jface.resource.ImageDescriptor, 一个轻量级对象, 它调用cr ...
Eclipse Common navigator 的一些资料 http://www.ibm.com/developerworks/cn/opensource/os-eclipse-emf/#resources   http://www.ibm.com/developerworks/cn/views/opensource/libraryview.jsp?sort_by=Relevance&show_abstract=true&show_all=false&search_flag=true&topic_by=Eclipse&type_by=%E6%89% ...
package com.posture.example.navigator; import org.eclipse.debug.ui.IDebugUIConstants;import org.eclipse.ui.IFolderLayout;import org.eclipse.ui.IPageLayout;import org.eclipse.ui.IPerspectiveFactory;import org.eclipse.ui.console.IConsoleConstants; import com.posture.example.navigator.wizards.NewRobin ...
package com.posture.example.navigator.wizards; import org.eclipse.swt.SWT;import org.eclipse.swt.events.SelectionAdapter;import org.eclipse.swt.events.SelectionEvent;import org.eclipse.swt.layout.GridData;import org.eclipse.swt.layout.GridLayout;import org.eclipse.swt.widgets.Button;import org.eclip ...
所依赖的jar, 在eclipse/plugin下   org.eclipse.core.runtime*.jarorg.eclipse.jface.text*.jarorg.eclipse.jface*.jarorg.eclipse.core.commands*.jarorg.eclipse.equinox.commands*.ajrswt.jar
Global site tag (gtag.js) - Google Analytics