All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsoar.debugger.selection.SelectionProvider Maven / Gradle / Ivy

/*
 * Copyright (c) 2008  Dave Ray 
 *
 * Created on Oct 23, 2008
 */
package org.jsoar.debugger.selection;

import java.util.List;

/**
 * @author ray
 */
public interface SelectionProvider
{
    void activate(SelectionManager manager);
    void deactivate();
    
    Object getSelectedObject();
    List getSelection();
}