eclipse 插件

Regex Util
http://regex-util.sourceforge.net/update/

JSEclipse--javascript editor
http://download.macromedia.com/pub/labs/jseclipse/autoinstall

JSlint
https://svn.codespot.com/a/eclipselabs.org/mobile-web-development-with-phonegap/tags/jslint4java1/download
JSunit

Veloeclipse--velocity editor
http://propsorter.sourceforge.net/veloeclipse

Jupiter 和 Code Striker。
Jupiter 是一款开源的 Eclipse 插件,允许成员将评审意见定位到真实代码的具体行,由于代码评审的结果以 XML 文件的形式保存,所以可以把结果提交到版本管理服务器进行共享。

findbugs
http://findbugs.cs.umd.edu/eclipse

git
http://download.eclipse.org/egit/updates-nightly

Helios
http://download.eclipse.org/releases/helios

pmd
http://pmd.sourceforge.net/eclipse/

Properties Editor
http://propedit.sourceforge.jp/eclipse/updates/

spket
http://www.spket.com/update

uml-green
http://www.cse.buffalo.edu/faculty/alphonce/green

UML Designer
http://marketplace.eclipse.org/content/uml-designer-indigo-version

Ant Visualizer
http://marketplace.eclipse.org/content/ant-visualization

Unnecessary Code Detector
http://www.ucdetector.org/

Color Theme
http://eclipsecolorthemes.org/?view=plugin

checkstyle
http://eclipse-cs.sourceforge.net/update
Checkstyle的结果输出
1 Type is missing a javadoc commentClass  缺少类型说明
2“{” should be on the previous line “{” 应该位于前一行
3Methos is missing a javadoc comment方法前面缺少javadoc注释
4Expected @throws tag for “Exception”在注释中希望有@throws的说明
5“.” Is preceeded with whitespace “.” 前面不能有空格
6“.” Is followed by whitespace“.” 后面不能有空格
7“=” is not preceeded with whitespace“=” 前面缺少空格
8“=” is not followed with whitespace“=” 后面缺少空格
9“}” should be on the same line“}” 应该与下条语句位于同一行
10Unused @param tag for “unused”没有参数“unused”,不需注释
11Variable “CA” missing javadoc变量“CA”缺少javadoc注释
12Line longer than 80characters行长度超过80
13Line contains a tab character行含有”tab” 字符
14Redundant “Public” modifier冗余的“public” modifier
15Final modifier out of order with the JSL suggestionFinal modifier的顺序错误
16Avoid using the “.*” form of importImport格式避免使用“.*”
17Redundant import from the same package从同一个包中Import内容
18Unused import-java.util.listImport进来的java.util.list没有被使用
19Duplicate import to line 13重复Import同一个内容
20Import from illegal package从非法包中 Import内容
21“while” construct must use “{}”“while” 语句缺少“{}”
22Variable “sTest1” must be private and have accessor method变量“sTest1”应该是private的,并且有调用它的方法
23Variable “ABC” must match pattern “^[a-z][a-zA-Z0-9]*$”变量“ABC”不符合命名规则“^[a-z][a-zA-Z0-9]*$”
24“(” is followed by whitespace“(” 后面不能有空格 25“)” is proceeded by whitespace“)” 前面不能有空格

你可能感兴趣的:(eclipse)