added breakpoint colors and user defined messages

This commit is contained in:
fros4943 2009-06-16 12:15:15 +00:00
parent ebb47546a2
commit 752e80167b
3 changed files with 175 additions and 50 deletions

View file

@ -26,11 +26,13 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: Watchpoint.java,v 1.1 2009/06/11 10:02:11 fros4943 Exp $
* $Id: Watchpoint.java,v 1.2 2009/06/16 12:15:27 fros4943 Exp $
*/
package se.sics.cooja;
import java.awt.Color;
/**
* @author Fredrik Osterlind
*/
@ -45,4 +47,9 @@ public interface Watchpoint {
* @return Mote
*/
public Mote getMote();
/**
* @return Color
*/
public Color getColor();
}