Java: String Equality (Common Mistake) – enrii.blog

JAVA strings compare reference for myself: However, to be safe, most of the time, programmers should use ".equals" rather than "==" to avoid unexpected outcome. It simply because ".equals" will compare 2 strings character by character to determine equality while "==" checks whether 2 string objects are identical. Try to do this experiment and you [...]

By | June 5th, 2008|General|0 Comments

Flex CSS

I've been working on understanding CSS in flex better as i'm adding a style explorer to my company's software to allow our clients to do their own branding. Couple of links i found useful: http://viconflex.blogspot.com/2007/04/flex-modules-compile-and-run-time-css.html http://blog.kevinhoyt.org/2006/06/01/css-positioning-with-flex-2/ http://blog.kevinhoyt.org/2006/02/03/programmatic-skinning-with-flex-2 http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html And since i need to load the css at runtime instead of compiling it in the app: [...]

By | October 15th, 2007|General|0 Comments