package com.dji.sample.patches.kml; public class KmlLine extends KmlBaseEntity { private String color; private long width; public String getColor() { return color; } public void setColor(String color) { this.color = color; } public long getWidth() { return width; } public void setWidth(long width) { this.width = width; } }