package org.wamblee.cdi; /** * Bean manager injection into any class. Use this by subclassing through * {@link #Injectable()). * * @author Erik Brakkee */ public abstract class Injectable { /** * Inheritance style constructor. */ protected Injectable() { SimpleInjector.inject(this); } }