Back to project page SensOSC.
The source code is released under:
Author: Thomas Mayer <thomas@residuum.org> Copyright (c) 2014 Thomas Mayer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation ...
If you think the Android project SensOSC listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.residuum.sensosc; //from ww w .j a v a 2 s . c om /** * Created by thomas on 07.10.14. */ public class Sensor { private final int sensorType; private final String oscPrefix; private final String name; private final int dimensions; public Sensor(String name, String oscPrefix, int sensorType, int dimensions) { this.name = name; this.oscPrefix = oscPrefix; this.sensorType = sensorType; this.dimensions = dimensions; } public String getName() { return name; } public String getOscPrefix() { return oscPrefix; } public int getSensorType() { return sensorType; } public int getDimensions() { return dimensions; } }