Welcome to the coffeecrew!

On this page you'll find updates and infos regarding coffeecrew services as well as the aggregated output of our members blogs. Enjoy your stay!


Please leave your comments on the originating blog by clicking on the post's title - Thank you.

The Data Pile: Creating A Simple Plugin Mechanism In Java

Filed Under (c0ding, java, Netbeans) by j on 02-06-2013

Overview

Our goal is to create a simple plugin mechanism in Java. On top of that we want our execution environment to be divided into three distinct phases. These phases are named:

PRE_PROCESS PROCESS POST_PROCESS

This will allow us to run certain plugins at specific phases during program execution. So if a plugin is for [...]

The Data PileThe Data Pile: Using Java Enumerations

Filed Under (c0ding, enum, java) by j on 04-11-2010

This article shows a basic implementation of a Java enumeration type that you can use to do a switch on Strings for example.Continue reading: Using Java Enumerations