blob: 138125a254ea789e7683ac75407ad45fb4d1df90 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.portfolio.task.ant.test.task;
import org.apache.tools.ant.BuildException;
import org.eclipse.egf.core.producer.InvocationException;
import org.eclipse.egf.ftask.producer.context.ITaskProductionContext;
import org.eclipse.egf.portfolio.task.ant.engine.TaskProductionForAnt;
/**
* @author xiaoru chen
*
*/
public class WriteAndReadContractInTask extends TaskProductionForAnt {
@Override
public void execute() throws BuildException {
super.execute();
// You can write the out put contracts in there.
try {
ITaskProductionContext context = getContext();
if (context != null) {
writeOutputValue(context);
readInputValue(context);
}
} catch (InvocationException e) {
throw new BuildException(e);
}
}
private void readInputValue(ITaskProductionContext context) throws InvocationException {
// Do some reading operation on contracts.
context.getInputValue("input_parameter", String.class);
}
private void writeOutputValue(ITaskProductionContext context) throws InvocationException {
// Do some writing operation on contracts.
context.setOutputValue("output_parameter", "hello ant!");
}
}