Tag Archives: remove

Custom Wrapper Class for Dictionary component – Flex {UPDATED}

Added some new functionality and plugged possible bugs. New functions incorporated: function insertKeyValue(keyValueCombo:Object):void >>Argument passed in is used as both Key and Value function insertArray(arr:Array):void >>Takes an Array object as argument and inserts each Array element in the MyDictionary Object function clone():MyDictionary >>Performs a deep copy function getValue(key : Object):Object >>Returns the corresponding value for the […]

0  

Custom Wrapper Class for Dictionary component – Flex

I was developing a Flex module earlier yesterday and somehow felt the need of an efficient data structure for look-up purpose. Array and ArrayCollection are just not good enough and the default implementation of Dictionary as part of Flex API is a no-brainer. So, I decided to create a wrapper functionality similar to the Dictionary […]

0  

Removing Subversion Control over a file/folder

I use Tortoise Svn as Subversion tool on Windows platform and Subclipse on Linux platform. For some reason, I had to remove the subversion control over a file/folder. The solution: Right click on the file/folder and goto ‘Tortoise SVN>>Export ‘ Then export the file/folder to itself (choose the same file/folder as the export-to file/folder) If […]

2