Interface DeprecationContent

Content of a deprecated element.

interface DeprecationContent {
    forRemoval: null | boolean;
    html: null | string;
    text: null | string;
}

Hierarchy (View Summary)

Properties

Properties

forRemoval: null | boolean

Whether the deprecated element is marked for removal in a future version.

null if couldn't be determined (this option was added in Java 9)

html: null | string

The HTML content.

text: null | string

The text content.