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.

ApiElement.java 475B

123456789101112131415161718192021222324252627
  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. import java.util.ArrayList;
  7. import java.util.List;
  8. /**
  9. *
  10. * @author chris
  11. */
  12. public class ApiElement {
  13. private List<ApiElement> children = new ArrayList<ApiElement>();
  14. public void addChild(final ApiElement e) {
  15. children.add(e);
  16. }
  17. public List<ApiElement> getChildren() {
  18. return children;
  19. }
  20. }