1 /** 2 * Copyright (C) 2010-14 pvmanager developers. See COPYRIGHT.TXT 3 * All rights reserved. Use is subject to license terms. See LICENSE.TXT 4 */ 5 package org.epics.vtype; 6 7 import org.epics.util.array.ListFloat; 8 9 /** 10 * Float array with alarm, timestamp, display and control information. 11 * 12 * @author carcassi 13 */ 14 public interface VFloatArray extends VNumberArray, VType { 15 16 @Override 17 ListFloat getData(); 18 }