Desktop tool for browsing account info from EVE-Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NamedApiElement.java 387B

123456789101112131415161718192021222324
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package uk.co.md87.evetool.api.parser;
  6. /**
  7. *
  8. * @author chris
  9. */
  10. public class NamedApiElement extends ApiElement {
  11. private final String name;
  12. public NamedApiElement(String name) {
  13. this.name = name;
  14. }
  15. public String getName() {
  16. return name;
  17. }
  18. }