[1] UltraMonkey-L7 (v3.1.2-1) | 2014-09-19 11:41 |
[2] UltraMonkey(L4) () | 2019-09-26 18:24 |
[3] SSL Proxy (1.0.2-0) | 2009-08-24 23:30 |
[4] Resource Agents for Heartbeat2 (SSL Proxy RA for Heartbeat 2.1.4) | 2010-09-22 11:14 |
log4cxx (0.10.0-1) | 2012-11-09 15:27 |
Java Coding Rule
大文字で始まる名詞をつける。内容の省略は行わないこと。アンダースコアでの連結も行わないこと。
- JavaDocサンプル
- /**
- * Outline of Class(クラス概要)
- * ピリオド(.)または句点(。)で終わるところまでが、クラス一覧の概要に説明されるところであり、
- * ピリオド以降は説明の概要には含まれず、クラスの説明に含まれる。
- * このように、JavadocにはHTMLタグを使用することができる。
- * </pre>
- * @author tanuma
- * @author nakai
- * @version 1.0
- * @since 1.0
- */
- public class SampleDoc{
- /**
- * @serial 直列化可能データの説明
- */
- private int x;
- /**
- * Validates a chess move.
- * @author kubota
- * @param theFromFile File of piece being moved
- * @param theFromRank Rank of piece being moved
- * @param theToFile File of destination square
- * @param theToRank Rank of destination square
- * @return true if a valid chess move or false if invalid
- */
- boolean isValidMove(int theFromFile, int theFromRank, int theToFile, int theToRank)
- {
- ...
- }
- /**
- * Outline of method(関数説明)
- * @param int Outline(引数)
- * @throws SomeException 例外の説明
- * @throws Exception 例外の説明
- * @return String型の値
- * @see "関連"
- */
- String add( int inint ) throws SomeException, Exception {
- }
- }
[PageInfo]
LastUpdate: 2012-11-11 10:15:46, ModifiedBy: anonymous
[License]
GNU Free Documentation License
[Permissions]
view:all, edit:all, delete/config:all