001package com.avaje.ebean.annotation; 002 003import java.lang.annotation.ElementType; 004import java.lang.annotation.Retention; 005import java.lang.annotation.RetentionPolicy; 006import java.lang.annotation.Target; 007 008/** 009 * A database table or column comment. 010 */ 011@Retention(RetentionPolicy.RUNTIME) 012@Target({ElementType.FIELD, ElementType.METHOD, ElementType.TYPE}) 013public @interface DbComment { 014 015 /** 016 * The database table or column comment. 017 */ 018 String value(); 019}