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

net.jangaroo.extxml.model.DescriptionHolder Maven / Gradle / Ivy

The newest version!
package net.jangaroo.extxml.model;

public class DescriptionHolder {
  private String description;

  public DescriptionHolder() {
  }

  public DescriptionHolder(String description) {
    this.description = description;
  }

  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy