Class DeveloperNote

java.lang.Object
br.net.dd.netherwingcore.common.configuration.fields.Field
br.net.dd.netherwingcore.common.configuration.fields.DeveloperNote

public class DeveloperNote extends Field
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 Details

    • DeveloperNote

      public DeveloperNote(String... value)
      Constructs a new DeveloperNote with the given value(s).
      Parameters:
      value - One or more string values representing the developer note contents.