saracogl.blogspot.com
A curious developer's blog: Two Columned Layout for standart forms
http://saracogl.blogspot.com/2010/10/two-columned-layout-for-standart-forms.html
A curious developer's blog. 28 Ekim 2010 Perşembe. Two Columned Layout for standart forms. I have implemented a layout for panels with two columns. It calculates the width of the first column according to the widest component of first column. And, uses remained space for second column components. Besides, each row height is calculated according to each row's two inner components' heights. It may be useful for some cases. Import java.awt.Component;. Import java.awt.Container;. Private int verticalGap = 0;.
saracogl.blogspot.com
A curious developer's blog: What is agile?
http://saracogl.blogspot.com/2009/12/what-is-agile.html
A curious developer's blog. 26 Aralık 2009 Cumartesi. I decided to write about Agile development and Agile practices days ago. But I coudn't have time to write. At last I've decided to write all as a series of short blog-posts. In this post, I'll try to explain "what is agile? Over processes and tools. Over following a plan. Customer satisfaction through early and continuous delivery of valuable software. Welcome changing requirements, even late. Deliver working software frequently (iterations). These pr...
saracogl.blogspot.com
A curious developer's blog: Aralık 2009
http://saracogl.blogspot.com/2009_12_01_archive.html
A curious developer's blog. 28 Aralık 2009 Pazartesi. How to read Excel sheet in Java? An example of reading and parsing an Excel file. We have a class (HomeObject) and this class has two attributes ('doorNo' and 'ownerName'). Public class HomeObject {. Private int doorNo;. Private String ownerName;. Public int getDoorNo() {. Public void setDoorNo(int doorNo) {. ThisdoorNo = doorNo;. Public String getOwnerName() {. Public void setOwnerName(String ownerName) {. ThisownerName = ownerName;. Result = " ;.
saracogl.blogspot.com
A curious developer's blog: Setting focus traversal keys for JTextArea
http://saracogl.blogspot.com/2010/01/setting-focus-traversal-keys-for.html
A curious developer's blog. 2 Ocak 2010 Cumartesi. Setting focus traversal keys for JTextArea. It's unable to use the "Tab" key for JTextArea to focus next swing component. The next code fixes this problem, and makes the Tab and Shift-Tab keys usable to focus forward or backward. JTextArea textArea = new JTextArea();. TextArea.setFocusTraversalKeys(KeyboardFocusManager.FORWARD TRAVERSAL KEYS,null);. TextArea.setFocusTraversalKeys(KeyboardFocusManager.BACKWARD TRAVERSAL KEYS,null);. Follow me on Twitter.
saracogl.blogspot.com
A curious developer's blog: Ocak 2010
http://saracogl.blogspot.com/2010_01_01_archive.html
A curious developer's blog. 2 Ocak 2010 Cumartesi. Setting focus traversal keys for JTextArea. It's unable to use the "Tab" key for JTextArea to focus next swing component. The next code fixes this problem, and makes the Tab and Shift-Tab keys usable to focus forward or backward. JTextArea textArea = new JTextArea();. TextArea.setFocusTraversalKeys(KeyboardFocusManager.FORWARD TRAVERSAL KEYS,null);. TextArea.setFocusTraversalKeys(KeyboardFocusManager.BACKWARD TRAVERSAL KEYS,null);. Follow me on Twitter.
saracogl.blogspot.com
A curious developer's blog: Hello World
http://saracogl.blogspot.com/2009/02/hello-world.html
A curious developer's blog. 3 Şubat 2009 Salı. Public class HelloWorld {. Public static void main(String[] args) {. System.out.println("Hello, World");. Kaydol: Kayıt Yorumları (Atom). Interested in Agile, CMMI, Java, Spring, SOA, OSGI, HLA, Design Patterns, Defence Techs, Literature, Metaphysics, Self-Development. Follow me on Twitter. Bekir S. Ertugrul. C) A curious developer's blog. Created by Deluxe Templates. Design by ChocoTemplates.com.
saracogl.blogspot.com
A curious developer's blog: How to read Excel sheet in Java?
http://saracogl.blogspot.com/2009/12/how-to-read-excel-sheet-in-java.html
A curious developer's blog. 28 Aralık 2009 Pazartesi. How to read Excel sheet in Java? An example of reading and parsing an Excel file. We have a class (HomeObject) and this class has two attributes ('doorNo' and 'ownerName'). Public class HomeObject {. Private int doorNo;. Private String ownerName;. Public int getDoorNo() {. Public void setDoorNo(int doorNo) {. ThisdoorNo = doorNo;. Public String getOwnerName() {. Public void setOwnerName(String ownerName) {. ThisownerName = ownerName;. Result = " ;.
saracogl.blogspot.com
A curious developer's blog: Şubat 2009
http://saracogl.blogspot.com/2009_02_01_archive.html
A curious developer's blog. 3 Şubat 2009 Salı. Public class HelloWorld {. Public static void main(String[] args) {. System.out.println("Hello, World");. Interested in Agile, CMMI, Java, Spring, SOA, OSGI, HLA, Design Patterns, Defence Techs, Literature, Metaphysics, Self-Development. Follow me on Twitter. Bekir S. Ertugrul. C) A curious developer's blog. Created by Deluxe Templates. Design by ChocoTemplates.com.
saracogl.blogspot.com
A curious developer's blog: Ekim 2010
http://saracogl.blogspot.com/2010_10_01_archive.html
A curious developer's blog. 28 Ekim 2010 Perşembe. Two Columned Layout for standart forms. I have implemented a layout for panels with two columns. It calculates the width of the first column according to the widest component of first column. And, uses remained space for second column components. Besides, each row height is calculated according to each row's two inner components' heights. It may be useful for some cases. Import java.awt.Component;. Import java.awt.Container;. Private int verticalGap = 0;.