/** @file ILabelAdder.java * * @author marco corvi * @date may 2012 * * @brief TopoDroid label adder interfare * -------------------------------------------------------- * Copyright This sowftare is distributed under GPL-3.0 or later * See the file COPYING. * -------------------------------------------------------- */ package com.topodroid.DistoX; public interface ILabelAdder { public void addLabel( String text, float x, float y ); }