/src/worldwind/kml/dom/KMLObject.java

http://wwj-kml.googlecode.com/ · Java · 33 lines · 17 code · 9 blank · 7 comment · 0 complexity · d1db813e7d1e4c5cf79981f750f45246 MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package worldwind.kml.dom;
  6. /**
  7. *
  8. */
  9. public abstract class KMLObject {
  10. protected String id;
  11. protected String targetId;
  12. public String getId() {
  13. return id;
  14. }
  15. public void setId(String id) {
  16. this.id = id;
  17. }
  18. public String getTargetId() {
  19. return targetId;
  20. }
  21. public void setTargetId(String targetId) {
  22. this.targetId = targetId;
  23. }
  24. }