/******************************************************************************* * Copyright (c) 2016 ARM Ltd. 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: * ARM Ltd and ARM Germany GmbH - Initial API and implementation *******************************************************************************/ package com.arm.cmsis.pack.events; /** * The result of an example job, copy */ public class RteExampleJobResult { protected String projectPath; protected boolean success; protected String errorString; public RteExampleJobResult() { } /** * @return the projectPath */ public String getProjectPath() { return projectPath; } /** * @param projectPath the projectPath to set */ public void setProjectPath(String projectPath) { this.projectPath = projectPath; } /** * @return the success */ public boolean isSuccess() { return success; } /** * @param success the success to set */ public void setSuccess(boolean success) { this.success = success; } /** * @return the errorString */ public String getErrorString() { return errorString; } /** * @param errorString the errorString to set */ public void setErrorString(String errorString) { this.errorString = errorString; } }