mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 14:55:41 +02:00
JavaDoc warnings
This commit is contained in:
parent
6cffc42499
commit
844ab2144c
3 changed files with 4 additions and 15 deletions
|
@ -70,7 +70,6 @@ public interface IScannerConfigBuilderInfo2 {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Persist the buildInfo.
|
* Persist the buildInfo.
|
||||||
* @throws CoreException
|
|
||||||
*/
|
*/
|
||||||
void save() throws CoreException;
|
void save() throws CoreException;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2004, 2007 IBM Corporation and others.
|
* Copyright (c) 2004, 2010 IBM Corporation and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -34,11 +34,8 @@ public interface IScannerInfoCollector {
|
||||||
public void contributeToScannerConfig(Object resource, Map scannerInfo);
|
public void contributeToScannerConfig(Object resource, Map scannerInfo);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns specific piece of discovered scanner info for a resource
|
* @return specific piece of discovered scanner info for a resource
|
||||||
* discovered during the last collection cycle
|
* discovered during the last collection cycle
|
||||||
* @param type
|
|
||||||
* @param resource
|
|
||||||
* @return
|
|
||||||
*/
|
*/
|
||||||
public List getCollectedScannerInfo(Object resource, ScannerInfoTypes type);
|
public List getCollectedScannerInfo(Object resource, ScannerInfoTypes type);
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2004, 2007 IBM Corporation and others.
|
* Copyright (c) 2004, 2010 IBM Corporation and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -21,24 +21,17 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
* @author vhirsl
|
* @author vhirsl
|
||||||
*/
|
*/
|
||||||
public interface IScannerInfoCollector2 extends IScannerInfoCollector {
|
public interface IScannerInfoCollector2 extends IScannerInfoCollector {
|
||||||
/**
|
|
||||||
* @param project
|
|
||||||
*/
|
|
||||||
public void setProject(IProject project);
|
public void setProject(IProject project);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Relegate discovered scanner configuration to a scanner info provider
|
* Relegate discovered scanner configuration to a scanner info provider
|
||||||
* @param monitor
|
|
||||||
* @throws CoreException
|
|
||||||
*/
|
*/
|
||||||
public void updateScannerConfiguration(IProgressMonitor monitor) throws CoreException;
|
public void updateScannerConfiguration(IProgressMonitor monitor) throws CoreException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create and return new IDiscoveredPathInfo that can hopefully serialize
|
* Create and return new IDiscoveredPathInfo that can hopefully serialize
|
||||||
* discovered scanner config to a file
|
* discovered scanner config to a file
|
||||||
*
|
|
||||||
* @return pathInfo
|
|
||||||
* @throws CoreException
|
|
||||||
*/
|
*/
|
||||||
public IDiscoveredPathInfo createPathInfoObject();
|
public IDiscoveredPathInfo createPathInfoObject();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue