Skip to main content

Kajabity Tools Version 0.4 Released – Strongly Named, Deployed to NuGet.org and GitHub Releases

Kajabity Tools (for C#) is a free, Open Source collection of software utility classes for .NET applications. Version 0.4 introduces some key structural changes, a small number of new features and several bug fixes. Full details are available on the Kajabity Tools pages. This release was prompted by requests, suggestions and contributions from Ivaylo Slavov and Read More

Tags: , , , , , , ,
Posted in Kajabity Tools | No Comments »
SDI Forms Classes

Kajabity Tools for C# Version 0.3 Released – Adding SDI Form and Document Classes

I’ve had the code for a while and I’m using it for a few of my own projects so when a comment on Loading XML in C# with XML Serialisation asked when it was going to be published, I thought I’d better get on with it. So here it is, Release 0.3 of Kajabity Tools Read More

Tags: , ,
Posted in Kajabity Tools | No Comments »

Kajabity Tools for C# Version 0.2 Released – Adding CSV File Handling and NUnit Tests

I have released version 0.2 of Kajabity Tools for C# which has a bug fix for JavaProperties and adds CSV file handling.  I’ve also added some initial unit tests (with NUnit) in a separate project folder. To be honest, the code has been sitting on my laptop for over a year and I’ve only been Read More

Tags: , ,
Posted in Kajabity Tools | No Comments »

Apache Maven Java Error – was unexpected at this time

While testing changes to the Maven Installer I had this strange error. Simple enough – I had quoted the value for the JAVA_HOME variable. So I had: JAVA_HOME=”C:\Program Files\Java\jdk1.7.0_07″ Removed the quotes and all worked fine: JAVA_HOME=C:\Program Files\Java\jdk1.7.0_07 Hope this helps.

Tags: , ,
Posted in Apache Maven, Java | 1 Comment »

Kajabity Tools (for C#) version 0.1 Released

At last, I’ve finally managed to put together a release of the Kajabity Tools – this version just includes a completely rewritten JavaProperties class allowing a C# application to correctly load and store Java style properties from a “.properties” file. For more details see Kajabity Tools. The Kajabity Tools-0.1.zip file contains: Kajabity Tools DLL – Read More

Tags: , , ,
Posted in C#, Kajabity Tools | No Comments »

Loading Java Properties Files in C#

Java style properties files are not supported in C# – so here is a class that reads and writes Java “.properties” files.

Tags: , ,
Posted in C#, Java, Kajabity Tools | 9 Comments »

Overriding Static Methods in Java

You can’t override static methods in Java – so here are some alternative (more OO) solutions.

Tags: , , ,
Posted in Java, UML | 1 Comment »