new class的时候,提示以下错误: Unable to parse template "Class" Error message: This template did not produce

我刚开始在网上查,直接复制网上的,运行还是不可以,最后拷贝同学的,就可以了,他的比网上多几行代码

#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
#if (${IMPORT_BLOCK} != "")${IMPORT_BLOCK}
#end
#parse("File Header.java")
#if (${VISIBILITY} == "PUBLIC")public #end #if (${ABSTRACT} == "TRUE")abstract #end #if (${FINAL} == "TRUE")final #end class ${NAME} #if (${SUPERCLASS} != "")extends ${SUPERCLASS} #end #if (${INTERFACES} != "")implements ${INTERFACES} #end {
}

猜你喜欢

转载自blog.csdn.net/qq_34608690/article/details/79040146