Home | History | Annotate | Download | only in output
      1 /*******************************************************************************
      2  * Copyright (c) 2009, 2018 Mountainminds GmbH & Co. KG and Contributors
      3  * All rights reserved. This program and the accompanying materials
      4  * are made available under the terms of the Eclipse Public License v1.0
      5  * which accompanies this distribution, and is available at
      6  * http://www.eclipse.org/legal/epl-v10.html
      7  *
      8  * Contributors:
      9  *    Mandrikov Evgeny - initial API and implementation
     10  *
     11  *******************************************************************************/
     12 package org.jacoco.agent.rt.internal.output;
     13 
     14 import org.jacoco.core.runtime.AgentOptions;
     15 import org.jacoco.core.runtime.RuntimeData;
     16 
     17 /**
     18  * Output that does nothing.
     19  */
     20 public class NoneOutput implements IAgentOutput {
     21 
     22 	public final void startup(final AgentOptions options, final RuntimeData data) {
     23 		// Nothing to do
     24 	}
     25 
     26 	public void writeExecutionData(final boolean reset) {
     27 		// Nothing to do
     28 	}
     29 
     30 	public void shutdown() {
     31 		// Nothing to do
     32 	}
     33 
     34 }
     35