Today I've try to create code snippet manager using Java and Swing. In my previous post I try to done this using WPF and C# ( http://gochev.blogspot.com/2009/09/code-snipper-manager-in-c-and-wpf.html ) I've just wanted to see how harder is to create the same app using Java and Swing. First lets make some compare about the WPF and Swing version of the app. The WPF version consists of 5 files (2 XAML files and 3 cs files with classes) The WPF version uses XAML for the view (only 30 lines ) and 8 lines in file called App.xaml. The C# class with the logic is 208 lines of code . The Snippet model class is not 62 lines of code using C# properties and etc. The Java version have 3 classes. One is the main class, the snippet model class 54 lines (most of them created automatically by eclipse like getters setters in C# YOU HAVE TO WRITE THEM MANUALLY) and the Logic + View class is 290 lines of code . So in conclusion I can say that Java version is 40 lines of code more but this is bec...
Blog about the light side of the *.java