Class Description
java.lang.Object
br.net.dd.netherwingcore.common.configuration.fields.Field
br.net.dd.netherwingcore.common.configuration.fields.Description
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 Summary
ConstructorsConstructorDescriptionDescription(String... value) Constructs aDescriptionobject with the provided value(s). -
Method Summary
-
Constructor Details
-
Description
Constructs aDescriptionobject with the provided value(s).- Parameters:
value- One or more strings representing the description's content.
-