Back to project page storm-gen.
The source code is released under:
Apache License
If you think the Android project storm-gen listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.turbomanage.storm.apt; /*from www . java 2 s .c o m*/ import javax.lang.model.type.TypeMirror; /** * Class representing the Base Dao Class * <p/> * * @Author Alexander Gherschon */ public class BaseDaoModel extends ClassModel { /** * Base Dao Class is received from the Annotation as complete class name, like java.lang.String * * @param qualifiedName */ public BaseDaoModel(String qualifiedName) { setClassName(qualifiedName.substring(qualifiedName.lastIndexOf(".") + 1)); setPackageName(qualifiedName.substring(0, qualifiedName.lastIndexOf("."))); } }