Mercurial > hg > jvamp
view org/vamp_plugins/Feature.java @ 19:5b0847d344c3
More tests
author | Chris Cannam |
---|---|
date | Tue, 07 Feb 2012 15:53:21 +0000 |
parents | 530bf5009ee2 |
children | f2914a92b553 |
line wrap: on
line source
package org.vamp_plugins; public class Feature { public boolean hasTimestamp; public RealTime timestamp; public boolean hasDuration; public RealTime duration; public float[] values; public String label; Feature() { hasTimestamp = false; hasDuration = false; } };