/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
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package worldwind.kml.dom;
- /**
- *
- */
- public abstract class KMLObject {
-
- protected String id;
-
- protected String targetId;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getTargetId() {
- return targetId;
- }
- public void setTargetId(String targetId) {
- this.targetId = targetId;
- }
- }