Class Description

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

public class Description extends Field
Represents a description field in the configuration system.

This class is a specific implementation of the Field class, and is designed to handle fields that represent descriptions in a flexible and extensible way.

The constructor takes one or more String values, which are passed directly to the superclass Field.

Example usage:

    Description description = new Description("This is the first part.", "This is the second part.");

See Also:
  • Constructor Details

    • Description

      public Description(String... value)
      Constructs a Description object with the provided value(s).
      Parameters:
      value - One or more strings representing the description's content.