blob: 2301705dbc31f0570df059ea031844452481e8f6 [file] [log] [blame]
package pkg;
//- @+8Deprecation defines/binding DeprecationClass
/**
* This the javadoc summary fragment, not the {@code @deprecated} tag.
*
* @deprecated this class is obsolete; prefer {@link Comments}
* @author this is an author tag, not the {@code @deprecated} tag.
*/
public class Deprecation {
//- DeprecationClass.tag/deprecated "this class is obsolete; prefer {@link Comments}"
//- @+3deprecatedMethod defines/binding DeprecationMethod
/** @deprecated this method is obsolete */
void deprecatedMethod() {}
//- DeprecationMethod.tag/deprecated "this method is obsolete"
//- @+3deprecatedField defines/binding DeprecationField
/** @deprecated this field is obsolete */
int deprecatedField;
//- DeprecationField.tag/deprecated "this field is obsolete"
//- @+3deprecatedFieldEmpty defines/binding DeprecationFieldEmpty
/** @deprecated */
int deprecatedFieldEmpty;
//- DeprecationFieldEmpty.tag/deprecated ""
}