码迷,mamicode.com
首页 > 系统相关 > 详细

转:为什么Eclipse中 按 F3 无效

时间:2014-07-22 22:47:32      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:des   java   strong   文件   io   re   

通常是由于自己的 工程 建得不对, 没有声明为 JAVA 或 PHP 类型工程。

 

例如, PHP 工程的 .project 文件中的内容如果如下, F3 应该就可以起作用了。

 

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
 <name>projectName</name>
 <comment></comment>
 <projects>
 </projects>
 <buildSpec>
  <buildCommand>
   <name>org.eclipse.dltk.core.scriptbuilder</name>
   <arguments>
   </arguments>
  </buildCommand>
  <buildCommand>
   <name>org.eclipse.php.core.PhpIncrementalProjectBuilder</name>
   <arguments>
   </arguments>
  </buildCommand>
  <buildCommand>
   <name>org.eclipse.wst.validation.validationbuilder</name>
   <arguments>
   </arguments>
  </buildCommand>
 </buildSpec>
 <natures>
  <nature>org.eclipse.php.core.PHPNature</nature>
 </natures>
</projectDescription>

 

 

又例如,JAVA Spring Tomcat 项目的 .project 文件中的内容如下:

 

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
 <name>projectName</name>
 <comment></comment>
 <projects>
 </projects>
 <buildSpec>
  <buildCommand>
   <name>org.eclipse.jdt.core.javabuilder</name>
   <arguments>
   </arguments>
  </buildCommand>
  <buildCommand>
   <name>org.springframework.ide.eclipse.core.springbuilder</name>
   <arguments>
   </arguments>
  </buildCommand>
 </buildSpec>
 <natures>
  <nature>org.springframework.ide.eclipse.core.springnature</nature>
  <nature>org.eclipse.jdt.core.javanature</nature>
  <nature>com.sysdeo.eclipse.tomcat.tomcatnature</nature>
 </natures>
</projectDescription>

转:为什么Eclipse中 按 F3 无效,布布扣,bubuko.com

转:为什么Eclipse中 按 F3 无效

标签:des   java   strong   文件   io   re   

原文地址:http://www.cnblogs.com/youxin/p/3861102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!