사용자 도구

사이트 도구


wiki:java:comment

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
wiki:java:comment [2020/01/30 10:04]
repia 만듦
wiki:java:comment [2023/02/02 14:36] (현재)
emblim98
줄 1: 줄 1:
-====== 주석 ======+====== 프로그래밍 주석 ====== 
 +<WRAP left notice 80%> 
 +  * description :  
 +  * author      : 주레피 
 +  * email       : dhan@repia.com 
 +  * lastupdate  : 2020-01-31 
 +</WRAP> 
 +<WRAP clear></WRAP>
  
 +===== Class comment =====
 +<code java>
 +/**
 + * 직무 정보(검색 포함) VO
 + * @author eleven
 + * @since 2020.02.20
 + * @version 1.0
 + * @see
 + *
 + * <pre>
 + * << 개정이력(Modification Information) >>
 + *
 +  수정일        수정자       수정내용
 +  ----------    --------    ---------------------------
 +  2020.02.20.   eleven      최초 생성
 +  2020.02.21    주레피      네이밍 변경
 +  </pre>
 + */
 +public class EvaluInfoVO extends EvaluVO implements Serializable
 +</code>
  
 +<code java>
 +/**
 + * Returns an Image object that can then be painted on the screen. 
 + * The url argument must specify an absolute {@link URL}. The name
 + * argument is a specifier that is relative to the url argument. 
 + * <p>
 + * This method always returns immediately, whether or not the 
 + * image exists. When this applet attempts to draw the image on
 + * the screen, the data will be loaded. The graphics primitives 
 + * that draw the image will incrementally paint on the screen. 
 + *
 + * @param  url  an absolute URL giving the base location of the image
 + * @param  name the location of the image, relative to the url argument
 + * @return      the image at the specified URL
 + * @see         Image
 + */
 +public Class
 +</code>
  
 +===== method comment =====
 +<code java>
 + /**
 + * 역량 평가 조회
 + * @param EvaluStatVO
 + * @return EvaluStatVO
 + * @exception Exception
 + * @author 주레피
 + * @since 2020.03.17
 + */
 +</code>
  
 +===== Attribute comment =====
 +<code java>
 + /** 검색종료일 */
 +</code>
 +
 +===== Mybatis comment =====
 +<code xml>
 + <!-- 직무 평가 항목 개수 조회
 + @author 주레피
 + @since 2020.03.30
 + -->
 +</code>
 ==== Ref ==== ==== Ref ====
   * [[http://www.gisdeveloper.co.kr/?p=1100|JavaDoc 주석 다는 방법, 기본적인 예]]   * [[http://www.gisdeveloper.co.kr/?p=1100|JavaDoc 주석 다는 방법, 기본적인 예]]
   * [[https://myeonguni.tistory.com/1596|[코딩규칙] 자바 코딩 규칙(Java Code Conventions)]]   * [[https://myeonguni.tistory.com/1596|[코딩규칙] 자바 코딩 규칙(Java Code Conventions)]]
 +  * [[https://zetawiki.com/wiki/Java_%EC%A3%BC%EC%84%9D_%EA%B0%80%EC%9D%B4%EB%93%9C|Java 주석 가이드]]
 +  * [[https://055055.tistory.com/45|Eclipse로 자동 주석달기(Code Template)]]
 +
 +{{tag>주레피 java comment}}
  
/volume1/web/dokuwiki/data/attic/wiki/java/comment.1580346252.txt.gz · 마지막으로 수정됨: 2022/03/10 19:52 (바깥 편집)