/******************************************************************************* * Copyright (c) 2012 OpenLegacy 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: * OpenLegacy Inc. - initial API and implementation *******************************************************************************/ package org.openlegacy.terminal.support; import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder; import org.openlegacy.terminal.TerminalPosition; import org.openlegacy.terminal.TerminalPositionContainer; import org.openlegacy.terminal.TerminalSnapshot; import org.openlegacy.terminal.services.ScreenIdentifier; import java.io.Serializable; /** * A simple implementation for a screen identifier * */ public class SimpleScreenIdentifier implements ScreenIdentifier, TerminalPositionContainer, Serializable { private static final long serialVersionUID = 1L; private TerminalPosition position; private String text; public SimpleScreenIdentifier(TerminalPosition position, String text) { this.position = position; this.text = text; } public boolean match(TerminalSnapshot terminalSnapshot) { String foundText = terminalSnapshot.getText(position, text.length()); if (foundText.equals(text)) { return true; } return false; } public TerminalPosition getPosition() { return position; } public String getText() { return text; } @Override public String toString() { return SnapshotUtils.positionTextToString(position, text); } @Override public boolean equals(Object obj) { return EqualsBuilder.reflectionEquals(this, obj); } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } }