All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgrasstools.nww.shapes.InfoLine Maven / Gradle / Ivy

package org.jgrasstools.nww.shapes;

import java.util.List;

import gov.nasa.worldwind.geom.Position;
import gov.nasa.worldwind.render.Path;

public class InfoLine extends Path implements IInfoShape {
    private String info;
    
    public InfoLine( List verticesList ) {
        super(verticesList);
    }

    public String getInfo() {
        return info;
    }

    public void setInfo( String info ) {
        this.info = info;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy