what is difference between kind=“con” and kind=“src ” in buildpath reference

前提是你 提交于 2019-12-12 21:53:50

问题


I have a classpath in my project there is two reference kind one is src one is con. con kind referenced jars is missing in my project. What is difference between these two reference kind and.

Here my .classpath file

1 <?xml version="1.0" encoding="UTF-8"?>
2 <classpath>
3   <classpathentry kind="src" path="src"/>
4   <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5   <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
6   ....
7 </classpath>

回答1:


con is a container such as the JRE files or the required plug-ins list. src is a source files folder path. There is also output for the output binaries and a some others for required projects, variables and libraries.



来源:https://stackoverflow.com/questions/20692412/what-is-difference-between-kind-con-and-kind-src-in-buildpath-reference

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!