blob: 4907684c5512c91a20f855ca2e8857abaf527cae [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com>
*
* 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
*******************************************************************************/
package org.eclipse.example.calc.internal.operations;
import org.eclipse.example.calc.Operation;
/**
* Equals operation to trigger binary operations
*/
public class Equals extends AbstractOperation implements Operation {
@Override
public String getName() {
return "=";
}
}