<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://valley.egloos.com/rss/style/style.xsl" type="text/xsl" media="screen"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>이글루스 'jface' 태그 최근글</title>
		<link>http://valley.egloos.com/tag/jface</link>
		<description>jface</description>
		<language>ko</language>
		<pubDate>Thu, 21 Aug 2008 19:17:50 +0900</pubDate>
		<generator>Egloos</generator>
		<item>
	<title><![CDATA[이클립스 설치, SWT&amp;JFace 설정]]></title>
	<link>http://woongstop.egloos.com/1965954</link>
	<guid>http://woongstop.egloos.com/1965954</guid>
	<description>
	<![CDATA[ 
1. 이클립스 다운로드    2. SWT 다운로드 -&amp;gt; eclipse/plugins 에 복사    3. File -&amp;gt; Import -&amp;gt;General -&amp;gt; Existing Projects into Workspace -&amp;gt; Select archive FIle -&amp;gt; 다운받은 swt파일 선택 -&amp;gt; finish    4. New -&amp;gt; Java Project -&amp;gt; NEXT -&amp;gt; Projects 탭에서 Add -&amp;gt; org.eclipse.swt선택    5. Project생성뒤 Package Explorer에서 프로젝트 선택뒤 오른쪽 버튼 누르고  -&amp;gt; Properties -&amp;gt; Java Build Path -&amp;gt;Libraries 선택    6. Add	]]>
	</description>
	<pubDate>Thu, 21 Aug 2008 19:17:50 +0900</pubDate>
	<dc:creator><![CDATA[WoongSTop님의 이글루]]></dc:creator>
</item>
<item>
	<title><![CDATA[java.lang.NoClassDefFoundError: org/eclipse/core/runtime/IProgressMonitor]]></title>
	<link>http://jhnote.egloos.com/178750</link>
	<guid>http://jhnote.egloos.com/178750</guid>
	<description>
	<![CDATA[ 
2장 SWT 와 JFace 로 시작하기 예제부터 에러 발생.  java.lang.NoClassDefFoundError: org/eclipse/core/runtime/IProgressMonitor  이런 에러가 발생한다.  이클립스에서 자바 빌드 패스에 아래의 플러그인 추가해서 해결  org.eclipse.core.commands_3.3.0.I20070605-0010.jar org.eclipse.equinox.common_3.3.0.v20070426.jar  책에는 SWT 와 JFace 만 추가하면 된다고 나왔었는데... 쩝~!	]]>
	</description>
	<pubDate>Mon, 24 Mar 2008 23:55:06 +0900</pubDate>
	<dc:creator><![CDATA[종호님의 이글루]]></dc:creator>
</item>
<item>
	<title><![CDATA[JFace 사용할 때 Java Build Path 설정]]></title>
	<link>http://popfly.egloos.com/4135379</link>
	<guid>http://popfly.egloos.com/4135379</guid>
	<description>
	<![CDATA[ 
JFace를 위해 buildpath 설정    org.eclipse.jface  org.eclipse.core.commands  org.eclipse.equinox.common   org.eclipse.swt =&amp;gt; swt.jar  org.eclipse.equinox.common &amp;lt;- 등록 되어 있지 않으면,  Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: org/eclipse/core/runtime/ISafeRunnable 발생한다.  	]]>
	</description>
	<pubDate>Tue, 05 Feb 2008 13:29:58 +0900</pubDate>
	<dc:creator><![CDATA[My Blog]]></dc:creator>
</item>
<item>
	<title><![CDATA[[Eclipse] JFace TableViewer 에서 런타임에 컬럼 폭 조절하기]]></title>
	<link>http://swguru.egloos.com/1604166</link>
	<guid>http://swguru.egloos.com/1604166</guid>
	<description>
	<![CDATA[ 
Jface viewer를 사용하면 viewpart에서 tree나 table을 넣어두고 다루는 작업을 간소화해준다.   그런데, table을 사용할 때 화면은 넓은데 오른쪽이 텅 비어 있는것도 보기 좋지 않고,  반대로 화면이 작아질 때 오른쪽 컬럼들이 가려지는것이 보기 좋지 않다.  어떻게 하면 view의 크기에 따라 table column width 도 자동으로 조절할 수 있을까?    핵심은 table control에 ControlListener를 등록하는데 있다.  (아래 예제는 tableViewer가 아닌 treeViewer가 사용되었을 뿐 사용방법은 동일하다.)  treeViewer.getTree().addControlListener(new ControlListener() {  	@Override 	]]>
	</description>
	<pubDate>Thu, 22 Nov 2007 14:26:03 +0900</pubDate>
	<dc:creator><![CDATA[Purpose driven development]]></dc:creator>
</item>
<item>
	<title><![CDATA[SWT &amp; JFace examples]]></title>
	<link>http://swguru.egloos.com/1592116</link>
	<guid>http://swguru.egloos.com/1592116</guid>
	<description>
	<![CDATA[ 
SWT &amp;amp; JFace examples  이 정도면 충분한 해설이지 않을까... How to use the JFace Tree Viewer  제대로된 JFace samples	]]>
	</description>
	<pubDate>Thu, 15 Nov 2007 19:34:12 +0900</pubDate>
	<dc:creator><![CDATA[Purpose driven development]]></dc:creator>
</item>
<item>
	<title><![CDATA[[SWT] SWT Shell : create a non-rectangular window]]></title>
	<link>http://malkang2.egloos.com/3929469</link>
	<guid>http://malkang2.egloos.com/3929469</guid>
	<description>
	<![CDATA[ 
/*  * Shell example snippet: create a non-rectangular window  *  * For a list of all SWT example snippets see  * http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/dev.html#snippets  */ import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.graphics.Region; import org.eclipse.swt.widgets.Button; im	]]>
	</description>
	<pubDate>Tue, 13 Nov 2007 01:24:14 +0900</pubDate>
	<dc:creator><![CDATA[말캉이]]></dc:creator>
</item>
<item>
	<title><![CDATA[Ecilpse3.x이상에서 JFace 프로젝트에 필요한 라이브러리]]></title>
	<link>http://joo8111.egloos.com/1535593</link>
	<guid>http://joo8111.egloos.com/1535593</guid>
	<description>
	<![CDATA[ 
&quot;SWT/JFace IN ACTION&quot; 을 보면서 화려한 JAVA UI를 꿈꾸고 있다.    그런데... 그 첫단추부터 문제가 생겼다. JFace로 만든 첫 프로그램부터 실행이 안되는거다.  분명히 필요한 library path는 다 등록한 것 같은데 안된다.  책에서 설명해준 그대로 했는데도 불구하고 같은 에러가 난다.    그러다가 Eclipse 이클립스플러그인/RCP 개발자 까페에서 답을 발견했다.  참.. 감사하다.      단!!!! MS-Windows에서는 org.eclipse.swt.win32.win32.x86 을 library로 사용하지만..  현재 사용 중인 OS에 따라서 이를 달리해야한다.  지금 Ubuntu 7.10상에서는 org.eclipse.swt.gtk.linux.x86 을 사용해야	]]>
	</description>
	<pubDate>Tue, 16 Oct 2007 23:54:06 +0900</pubDate>
	<dc:creator><![CDATA[Joo's Study]]></dc:creator>
</item>
<item>
	<title><![CDATA[[Eclipse] JFace, SWT 등 UI 관련해서 공부하기]]></title>
	<link>http://swguru.egloos.com/1520451</link>
	<guid>http://swguru.egloos.com/1520451</guid>
	<description>
	<![CDATA[ 
가장 좋은 방법은 Eclipse SDK에서 제공하는 예제 플러그인을 실행해보고 해당 소스를 보는 것이다.  예제를 실행해보면 JFace나 SWT 위젯의 속성과 개념이 팍팍 다가오는 것을 느낄것이다.    플러그인은 plugins\org.eclipse.sdk.examples이고  플러그인 소스는 plugins\org.eclipse.sdk.examples.source 이다.    Eclipse SDK를 내려받아 압축을 풀어보면 들어있기 때문에 GMF SDK를 내려받았다면 안보일것이다.   --&gt; 이것이 집컴에서는 보이고 회사컴에서는 안보였던 이유다.    잘못 알았다.  SWT example은 org.eclipse.swt.examples.* 이다.  이 예제에 대한 자세한 설명은에서 확인할 수 있다.  	]]>
	</description>
	<pubDate>Tue, 09 Oct 2007 06:15:14 +0900</pubDate>
	<dc:creator><![CDATA[Purpose driven development]]></dc:creator>
</item>
	</channel>
</rss>