SelectList.java :  » Testing » watij » watij » elements » Java Open Source

Java Open Source » Testing » watij 
watij » watij » elements » SelectList.java
package watij.elements;

import java.util.List;

/**
 * Created by IntelliJ IDEA.
 * User:
 * Date: Apr 20, 2006
 * Time: 9:19:39 PM
 * To change this template use File | Settings | File Templates.
 */
public interface SelectList extends HtmlElement {

    public void clearSelection() throws Exception;

    public List<String> getAllContents() throws Exception;

    public List<String> getSelectedItems() throws Exception;

    public void select(String item) throws Exception;

    public void selectValue(String item) throws Exception;

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.