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_PROCESSThis will allow us to run certain plugins at specific phases during program execution. So if a plugin is for [...]