blob: 8a02592c6d509a2e3f2bf53c809adda15a3c95d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2018 EclipseSource Muenchen GmbH and others.
*
* 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:
* jonas - initial API and implementation
******************************************************************************/
package org.eclipse.emfforms.bazaar.internal;
import org.eclipse.emfforms.bazaar.BazaarContextFunction;
import org.eclipse.emfforms.bazaar.Exchange;
/**
* @author jonas
*
*/
public class BazaarContextFunctionNoParameter implements BazaarContextFunction {
private final Object transformed;
/**
* @param transformed
*/
public BazaarContextFunctionNoParameter(Object transformed) {
this.transformed = transformed;
}
@Exchange
public Object exchange() {
return transformed;
}
}