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

de.gurkenlabs.litiengine.resources.NamedResource Maven / Gradle / Ivy

The newest version!
package de.gurkenlabs.litiengine.resources;

import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlTransient;

public abstract class NamedResource implements Resource {
  @XmlAttribute
  private String name;

  @XmlTransient
  @Override
  public String getName() {
    return this.name;
  }

  @Override
  public void setName(final String n) {
    this.name = n;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy