Commit 7695a587 authored by Daniel Schramm's avatar Daniel Schramm
Browse files

Feature points implement Serializable

parent 3ebdc53e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
package cz.fidentis.analyst.feature;

import java.io.Serializable;
import javax.vecmath.Point3d;

/**
 *
 * @author kubok
 */
public class FeaturePoint {
public class FeaturePoint implements Serializable {

    private final Point3d position;
    private final FeaturePointType FEATURE_POINT_TYPE;
+5 −6
Original line number Diff line number Diff line
package cz.fidentis.analyst.feature;

public class FeaturePointType {
import java.io.Serializable;

public class FeaturePointType implements Serializable {
    
    private final int type;
    private final String name;
    private final String info;
    private final String code;

    public FeaturePointType(
            int type,
             String name,
             String info,
             String code) {
    public FeaturePointType(int type, String name, String info, String code) {
        this.type = type;
        this.name = name;
        this.info = info;