eu.cedarsoft.utils.springrcp.beanlist.AbstractBeanManager Maven / Gradle / Ivy
package com.cedarsoft.utils.springrcp.beanlist;
import org.jetbrains.annotations.NotNull;
/**
*
* Date: 21.08.2006
* Time: 15:02:51
*
* @author Johannes Schneider -
* Xore Systems
*/
public abstract class AbstractBeanManager implements BeanManager {
private final Class type;
protected AbstractBeanManager( @NotNull Class type ) {
this.type = type;
}
@NotNull
public Class getType() {
return type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy