/**
* Adds default stereotypes.
*/
protected void addDefaultStereoTypes()
{
StereoTypeModel model = new StereoTypeModel(webBeansContext, Model.class);
webBeansContext.getStereoTypeManager().addStereoTypeModel(model);
model = new StereoTypeModel(webBeansContext, javax.decorator.Decorator.class);
webBeansContext.getStereoTypeManager().addStereoTypeModel(model);
model = new StereoTypeModel(webBeansContext, Interceptor.class);
webBeansContext.getStereoTypeManager().addStereoTypeModel(model);
}