Class DeveloperNote
java.lang.Object
br.net.dd.netherwingcore.common.configuration.fields.Field
br.net.dd.netherwingcore.common.configuration.fields.DeveloperNote
Represents a developer note field in the configuration. This class is a specialized
extension of the
Field class, allowing developers to include additional
notes or metadata as needed.
Instances of this class can be initialized with one or more string values, which are
passed to the superclass Field for further handling.
Usage Example:
DeveloperNote note = new DeveloperNote("Important info", "Review before release");
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeveloperNote(String... value) Constructs a newDeveloperNotewith the given value(s). -
Method Summary
-
Constructor Details
-
DeveloperNote
Constructs a newDeveloperNotewith the given value(s).- Parameters:
value- One or more string values representing the developer note contents.
-