- The opinions expressed here are my personal opinions. Content published here is not read or approved in advance by EMC and does not necessarily reflect the views and opinions of EMC.
Tags
agile aix ant automation bug tracking convention data dependency injection design pattern eclipse encapsulation eXtreme Programming factory fix gnu/linux gwt html java javafx jsp jvm log mvc osgi parameter object perforce performance pipe refactoring reflection regexp service strange struts subversion TDD tennis tomcat visitor vpn webapp xacml xml xp studio xsltTwitter
- RT @macgirlsweden #XACML engine evaluates the policy & w/ low risk level allows edit but w/ higher level removes edit or hides doc #mmtm12 1 day ago
- RT @johjak #mmtm12 Jeroen starting demo of #xacml policy-based security; risk-adative security. Interesting! #emcworld #documentum 1 day ago
- RT @macgirlsweden #XACML Components being shown #mmtm12 #documentum http://t.co/Va6uqdIq 1 day ago
- RT @turnerkid #mmtm12 reactive dynamic adaptive security model being discussed. Been working with RSA #XACML 1 day ago
- RT @macgirlsweden Argues for a need for dynamic security models - shows off the #XACML engine #mmtm12 #documentum 1 day ago
Tag Archives: eclipse
Top-Down Test-Driven Development
In Test-Driven Development (TDD), I have a tendency to dive right in at the level of some class that I am sure I’m gonna need for this cool new feature that I’m working on. This has bitten me a few … Continue reading
Bowling Again
It’s been a while since I’ve done the bowling game scoring exercise. For those of you who don’t know it, the bowling game (ten-pin) is almost the Hello, world! of TDD. I want to learn Groovy, but I’m going to … Continue reading
OSGi & Maven & Eclipse
If you’re involved in a large software development effort in Java, then OSGi seems like a natural fit to keep things modular and thus maintainable. But every advantage can also be seen as a disadvantage: using OSGi you will end … Continue reading
Ubuntu 9.10 & Eclipse 3.5
I recently upgraded Ubuntu to its latest version (9.10, Karmic Koala) and it works great so far. Except for Eclipse. I ran Eclipse 3.5 (Galileo), and apparently SWT in that version does something wrong in communicating with GTK. The end … Continue reading
JavaFX for GNU/Linux has arrived
Finally, the time has come: JavaFX is now supported on both GNU/Linux and Solaris. It’s not really advertised, though, so h Here’s how to get it: Go to the JavaFX website. Click the Download now button. Yes, the one that … Continue reading
JavaFX plugin for Eclipse patched
A while ago I wrote about how the JavaFX Eclipse plugin has some shortcomings. Luckily, the plugin is released under an Open Source license (BSD). Therefore, the source is available, and anyone can fix problems and supply patches. So I … Continue reading
JavaFX plugin for Eclipse
Being an happy Eclipse user, I’ve always felt sort of a second-rate citizen in the JavaFX world. I get it that Sun wants to promote their own IDE. But let’s face it, there are a lot of us Eclipseans (is … Continue reading
Running a JavaFX script from an OSGi bundle
Two technologies that have been on my radar for a while are JavaFX, Sun’s entry in the RIA race, and OSGi, the Dynamic Module System for Java. In this tutorial, I will combine the two by running a JavaFX script … Continue reading
Posted in Code
Tagged bundle, class path, eclipse, javafx, manifest, osgi, plug-in, service provider
19 Comments
Automating refactorings
I’m a big fan of both refactoring and automation. It’s no wonder, then, that the support for automated refactoring in Eclipse makes me very happy. I find that it makes me a lot more productive, and I produce better code. … Continue reading
The Power of Convention
I ran into some code the other day that wasn’t obvious to me right away. Why? Because it didn’t follow conventions. Let me explain. In our system, we have what we call ‘binding objects’. These are objects that are persisted … Continue reading