super.initialize(aContext);
try {
// Get configuration parameter values
String modelFile = (String) aContext.getConfigParameterValue(MODEL_FILE_PARAM);
tagger = new PosTagger(modelFile, (Dictionary) null);
} catch (Exception e) {
throw new ResourceInitializationException(e);
}
}