All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.takari.builder.internal.model.GeneratedSourcesDirectoryParameter Maven / Gradle / Ivy

package io.takari.builder.internal.model;

import io.takari.builder.GeneratedSourcesDirectory;

public class GeneratedSourcesDirectoryParameter
    extends AbstractFileParameter {

  public GeneratedSourcesDirectoryParameter(MemberAdapter element, TypeAdapter type) {
    super(element, type, GeneratedSourcesDirectory.class);
  }

  @Override
  public String[] value() {
    return annotation.value();
  }

  @Override
  public String[] defaultValue() {
    return annotation.defaultValue();
  }

  @Override
  public boolean required() {
    return annotation.required();
  }

  @Override
  public void accept(BuilderMetadataVisitor visitor) {
    visitor.visitGeneratedSourcesDirectory(this);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy