Skip to content

Instantly share code, notes, and snippets.

@ip-imamoto
Created February 21, 2016 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ip-imamoto/f73cb996eed6043206c9 to your computer and use it in GitHub Desktop.
Save ip-imamoto/f73cb996eed6043206c9 to your computer and use it in GitHub Desktop.
ToDoアノテーション使用クラス
package todo;
public class ToDoTest {
@ToDo(message = "if文が不要なので1行にまとめる", expiration = "20160211")
public static boolean over5characters(String target) {
if (target.length() > 5) {
return true;
}
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment