Skip to content
Snippets Groups Projects
Commit 7695a587 authored by Daniel Schramm's avatar Daniel Schramm
Browse files

Feature points implement Serializable

parent 3ebdc53e
No related branches found
No related tags found
No related merge requests found
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;
......
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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment