/******************************************************************************* * Copyright (c) 2013=2014 Red Hat Inc.. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Mickael Istria (Red Hat) - initial API and implementation *******************************************************************************/ package org.eclipse.swtbot.generator.framework.rules.simple; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Event; import org.eclipse.swtbot.generator.framework.GenerationSimpleRule; import org.eclipse.swtbot.generator.framework.WidgetUtils; public class ComboTextModifyRule extends GenerationSimpleRule { private int textIndex; private String newValue; private Combo combo; @Override public boolean appliesTo(Event event) { if (! (event.widget instanceof Combo)) { return false; } Combo combo = (Combo)event.widget; return event.type == SWT.Modify && !Arrays.asList(combo.getItems()).contains(combo.getText()); } @Override public void initializeForEvent(Event event) { this.combo = (Combo) event.widget; this.textIndex = WidgetUtils.getIndex(this.combo); this.newValue = this.combo.getText(); } public int getTextIndex() { return textIndex; } public void setTextIndex(int textIndex) { this.textIndex = textIndex; } @Override public List<String> getActions() { List<String> actions = new ArrayList<String>(); StringBuilder res = new StringBuilder(); res.append("bot.comboBox("); if (textIndex != 0) { res.append(textIndex); } res.append(").setText(\"" + this.newValue + "\")"); actions.add(res.toString()); return actions; } @Override public List<String> getImports() { // TODO Auto-generated method stub return null; } @Override public Combo getWidget() { return this.combo; } }