1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

Bug 492491 - IWYU hyperlink in Include Pragmas preference page has moved

Change-Id: Iddb08db3427592f4725a9c54747971b9efe2d97a
This commit is contained in:
Sergey Prigogin 2016-04-26 13:53:52 -07:00
parent 3822ee7b43
commit 590d832822
6 changed files with 10 additions and 10 deletions

View file

@ -109,7 +109,7 @@ public interface IASTPreprocessorIncludeStatement extends IASTPreprocessorStatem
/** /**
* Returns {@code true} if the included file is exported by the including header. * Returns {@code true} if the included file is exported by the including header.
* *
* @see "https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas" * @see "https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md"
* @since 5.5 * @since 5.5
*/ */
public boolean isIncludedFileExported(); public boolean isIncludedFileExported();

View file

@ -116,7 +116,7 @@ public interface IIndexInclude {
/** /**
* Returns {@code true} if the included file is exported by the including header. * Returns {@code true} if the included file is exported by the including header.
* @see "https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas" * @see "https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md"
* @since 5.5 * @since 5.5
*/ */
boolean isIncludedFileExported() throws CoreException; boolean isIncludedFileExported() throws CoreException;

View file

@ -16,7 +16,7 @@ import java.util.regex.PatternSyntaxException;
/** /**
* Container for include export patterns, for example "IWYU pragma: export", * Container for include export patterns, for example "IWYU pragma: export",
* "IWYU pragma: begin_exports" and "IWYU pragma: end_exports". * "IWYU pragma: begin_exports" and "IWYU pragma: end_exports".
* @see "https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas" * @see "https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md"
* *
* @since 5.5 * @since 5.5
*/ */

View file

@ -182,7 +182,7 @@ public class CCorePreferenceConstants {
/** /**
* Preference key for the regular expression pattern that, when appears in a comment on the same * Preference key for the regular expression pattern that, when appears in a comment on the same
* line as include statement, indicates that the included header file is exported. * line as include statement, indicates that the included header file is exported.
* @see "https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas" * @see "https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md"
* *
* @since 5.5 * @since 5.5
*/ */
@ -197,7 +197,7 @@ public class CCorePreferenceConstants {
/** /**
* Preference key for the regular expression pattern that, when appears in a comment, marks * Preference key for the regular expression pattern that, when appears in a comment, marks
* the beginning of a sequence of include statements that export the included header files. * the beginning of a sequence of include statements that export the included header files.
* @see "https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas" * @see "https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md"
* *
* @since 5.5 * @since 5.5
*/ */
@ -212,7 +212,7 @@ public class CCorePreferenceConstants {
/** /**
* Preference key for the regular expression pattern that, when appears in a comment, marks * Preference key for the regular expression pattern that, when appears in a comment, marks
* the end of a sequence of include statements that export the included header files. * the end of a sequence of include statements that export the included header files.
* @see "https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas" * @see "https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md"
* *
* @since 5.5 * @since 5.5
*/ */
@ -228,7 +228,7 @@ public class CCorePreferenceConstants {
* Preference key for the regular expression pattern that, when appears in a comment on the same * Preference key for the regular expression pattern that, when appears in a comment on the same
* line as include statement, indicates that the included header file is private and that * line as include statement, indicates that the included header file is private and that
* another header file should be included instead. * another header file should be included instead.
* @see "https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas" * @see "https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md"
* *
* @since 5.7 * @since 5.7
*/ */
@ -244,7 +244,7 @@ public class CCorePreferenceConstants {
* Preference key for the regular expression pattern that, when appears in a comment on the same * Preference key for the regular expression pattern that, when appears in a comment on the same
* line as include statement, indicates that the include statement should be preserved when * line as include statement, indicates that the include statement should be preserved when
* organizing includes. * organizing includes.
* @see "https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas" * @see "https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md"
* *
* @since 5.9 * @since 5.9
*/ */

View file

@ -18,7 +18,7 @@ import org.eclipse.cdt.internal.ui.ICHelpContextIds;
/* /*
* The preference page for configuring include-related pragmas. * The preference page for configuring include-related pragmas.
* @see "https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas" * @see "https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md"
*/ */
public class IncludePragmasPreferencePage extends ConfigurationBlockPropertyAndPreferencePage { public class IncludePragmasPreferencePage extends ConfigurationBlockPropertyAndPreferencePage {
public static final String PREF_ID= "org.eclipse.cdt.ui.preferences.IncludePragmasPreferencePage"; //$NON-NLS-1$ public static final String PREF_ID= "org.eclipse.cdt.ui.preferences.IncludePragmasPreferencePage"; //$NON-NLS-1$

View file

@ -521,7 +521,7 @@ IncludeOrderBlock_down= D&own
IncludeOrderBlock_order_of_includes= O&rder of Include Statements: IncludeOrderBlock_order_of_includes= O&rder of Include Statements:
IncludePragmasPreferencePage_title= Include Pragmas IncludePragmasPreferencePage_title= Include Pragmas
IncludePragmasBlock_description=Include pragmas are special comments that affect behavior of Organize Includes command. A description of include pragmas can be found in <a href="https://code.google.com/p/include-what-you-use/wiki/IWYUPragmas">IWYU Pragmas</a>. Include patterns can be customized by defining regular expressions matching each of the pragmas. IncludePragmasBlock_description=Include pragmas are special comments that affect behavior of Organize Includes command. A description of include pragmas can be found in <a href="https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUPragmas.md">IWYU Pragmas</a>. Include patterns can be customized by defining regular expressions matching each of the pragmas.
IncludePragmasBlock_link_tooltip=Wiki page describing include-what-you-use pragmas IncludePragmasBlock_link_tooltip=Wiki page describing include-what-you-use pragmas
IncludePragmasBlock_export_pattern= E&xport: IncludePragmasBlock_export_pattern= E&xport:
IncludePragmasBlock_begin_exports_pattern= &Begin Exports: IncludePragmasBlock_begin_exports_pattern= &Begin Exports: