annotate org/vamp_plugins/Feature.java @ 18:530bf5009ee2

Pull out Feature to a separate file; JNI doesn't seem to be able to find its constructor otherwise. Also a couple of other fixes
author Chris Cannam
date Tue, 07 Feb 2012 12:12:36 +0000
parents
children f2914a92b553
rev   line source
Chris@18 1
Chris@18 2 package org.vamp_plugins;
Chris@18 3
Chris@18 4 public class Feature {
Chris@18 5 public boolean hasTimestamp;
Chris@18 6 public RealTime timestamp;
Chris@18 7 public boolean hasDuration;
Chris@18 8 public RealTime duration;
Chris@18 9 public float[] values;
Chris@18 10 public String label;
Chris@18 11 Feature() {
Chris@18 12 hasTimestamp = false; hasDuration = false;
Chris@18 13 }
Chris@18 14 };
Chris@18 15