Class ImportantNote
java.lang.Object
br.net.dd.netherwingcore.common.configuration.fields.Field
br.net.dd.netherwingcore.common.configuration.fields.ImportantNote
Represents an important note within the configuration fields.
This class extends the Field class and allows the creation of a field
that can store one or more values representing an important note. It can be
used to highlight critical messages or instructions that should be emphasized
within the configuration.
Example usage:
ImportantNote note = new ImportantNote("This is an important note.");
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionImportantNote(String... value) Constructs a newImportantNoteinstance with the specified value(s). -
Method Summary
-
Constructor Details
-
ImportantNote
Constructs a newImportantNoteinstance with the specified value(s).- Parameters:
value- one or more string values representing the content of the important note
-