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

Remove @noreference from getResourceProfileWorkingCopy since it's used

externally.
This commit is contained in:
Sergey Prigogin 2012-03-01 16:16:54 -08:00
parent 9fa581109a
commit f85b0e8f4c

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2009, 2010 Alena Laskavaia * Copyright (c) 2009, 2010 Alena Laskavaia 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
@ -10,18 +10,17 @@
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.codan.core.model; package org.eclipse.cdt.codan.core.model;
import org.eclipse.core.resources.IResource;
import java.util.Collection; import java.util.Collection;
import java.util.Iterator; import java.util.Iterator;
import org.eclipse.core.resources.IResource;
/** /**
* This interface an API to add/remove checker and problems programmatically, * This interface an API to add/remove checker and problems programmatically,
* get problem profiles and change problem default settings * get problem profiles and change problem default settings
* *
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*
*/ */
public interface ICheckersRegistry extends Iterable<IChecker> { public interface ICheckersRegistry extends Iterable<IChecker> {
/** /**
@ -115,9 +114,9 @@ public interface ICheckersRegistry extends Iterable<IChecker> {
* working copy, using {@link #updateProfile(IResource, IProblemProfile)} * working copy, using {@link #updateProfile(IResource, IProblemProfile)}
* method. * method.
* *
* @noreference This method is not intended to be referenced by clients.
* @param element * @param element
* @return resource profile * @return resource profile
* @since 2.1
*/ */
public IProblemProfile getResourceProfileWorkingCopy(IResource element); public IProblemProfile getResourceProfileWorkingCopy(IResource element);