일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 퀄컴
- Wibro
- 페이스북
- itmusic
- brew
- 그녀가말했다
- 위피
- "명탐정 코난"
- 김장훈의who
- 사요
- 모던음악만만세
- CDMA
- 이지형
- SWT
- 자바
- 차트쇼쇼쇼
- Java
- VoIP
- USIM
- 공정위
- ETF
- 한국의 기획자들
- EV-DO Rev. B
- 유희열의라디오천국
- 민동현
- 라디오
- 민동현의토요명화
- 러시아
- HSDPA
- 김장훈
- Today
- Total
zyint's blog
1. 에스프레소 베리이에션은 다음과 같습니다. 에스프레소(espresso): 베리에이션의 핵심. 이름 그대로 높은 압력으로 빠르게 추출한다. 잘못뽑으면 쓴맛이 강하게 추출된다. (제대로 만든 에스프레소는 쓴맛이 거의 없다.) 솔로(Solo) : 말그대로 한잔의 에스프레소. 도피오(dopio): ‘2배(double)’라는 의미. 에스프레소를 두 배로 마시고 싶거나, 카푸치노 등을 진하게 마시고 싶을 때 “도피오로 해달라”면 된다. 롱고(Lungo) : 에스프레소를 길(long)게 뽑는것을 말한다. 과다추출된 맛. 리스트레또(Restretto) : 에스프레소를 보다 진하게 뽑는것을 말한다. 에스프레소의 농도는 뽑기시작하면서 점점 진하지다가 피크를 지난후 점점 엷어지며 엷어진 부분에서 추출을 하는데 리스트레또..
Many operating systems have the concept of a 'system tray', and it's often nice to be able to ofter a 'tray icon' feature for your application. SWT ships with tray icon support in the form of the org.eclipse.swt.widgets.TrayIcon class. Using a tray icon is fairly simple in SWT: image = new Image(display, BalloonExample.class.getResourceAsStream("tray_icon.gif")); // ... Tray tray = display.getSy..
enum Java 1.5 has built-in support for enumerated types. Prior to that you had to kludge them in some way with static final ints (which were not typesafe) or with Objects which would not work in switch statements. Don't confuse enum with the Enumeration interface, an almost obsolete way of iterating over Collections, replaced by Iterator. Java 1.5 enums are references to a fixed set of Objects t..
import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableColumn; import org.eclipse.swt.widgets.TableItem; import org.eclipse.swt.widgets.Text; public class TableClass { public static void main(St..