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

org.n52.sensorthings.Point Maven / Gradle / Ivy

There is a newer version: 1.0.0-alpha.9
Show newest version
package org.n52.sensorthings;

import java.util.List;

/**
 * @author Jan Schulte
 */
public class Point {

    private List coordinates;

    private String type;

    /**
     * @return the coordinates
     */
    public List getCoordinates() {
        return coordinates;
    }

    /**
     * @param coordinates the coordinates to set
     */
    public void setCoordinates(List coordinates) {
        this.coordinates = coordinates;
    }

    /**
     * @return the type
     */
    public String getType() {
        return type;
    }

    /**
     * @param type the type to set
     */
    public void setType(String type) {
        this.type = type;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy