1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-20 06:35:50 +02:00

[cleanup] Add missing javadoc comments and fix copyright header

This commit is contained in:
Uwe Stieber 2006-12-30 19:04:04 +00:00
parent 178ac9380b
commit 8507f14015
2 changed files with 25 additions and 7 deletions

View file

@ -19,7 +19,24 @@ import org.eclipse.core.runtime.IPath;
*/
public interface IRSETestLogCollectorDelegate {
/**
* Returns the list of absolute file locations to included
* within the collected logs archive file. The returned
* absolute file locations must denote real existing files.
* Possible dynamic content to collect can be written to
* temporary files. The log collector delegate is responsible
* for removing these temporary files if the <code>dispose()</code>
* method is called.
*
* @return An array of absolute file locations.
*/
public IPath[] getAbsoluteLogFileLocations();
/**
* Signal the RSE test log collector delegate to dispose
* any resource created. Possibly created temporary files
* should be deleted. Open streams or handles should be
* closed.
*/
public void dispose();
}

View file

@ -1,13 +1,14 @@
/* *******************************************************************************
* Copyright (c) 2006 IBM Corporation 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
/********************************************************************************
* Copyright (c) 2006 Wind River Systems, Inc. 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:
* Uwe Stieber (Wind River) - initial contribution.
* Uwe Stieber (Wind River) - initial API and implementation.
* Martin Oberhuber (Wind River) - fix build against 3.2.1, fix javadoc errors
* *******************************************************************************/
********************************************************************************/
package org.eclipse.rse.tests.core;
import java.io.BufferedInputStream;