blob: 04db3febd917ee9419c87d1464e11a0888b4ef6c [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;
/**
* Unary operation
*/
public interface UnaryOperation extends Operation {
/**
* @param arg1 parameter
* @return result of binary operation
*/
public float perform(float arg1);
}