Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IOptionCategoryApplicability.java')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IOptionCategoryApplicability.java17
1 files changed, 8 insertions, 9 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IOptionCategoryApplicability.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IOptionCategoryApplicability.java
index 3bd36ac0f58..cc5b2eec0e1 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IOptionCategoryApplicability.java
+++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IOptionCategoryApplicability.java
@@ -7,7 +7,7 @@
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
- *
+ *
* Contributors:
* Miwako Tokugawa (Intel Corporation) - initial API and implementation
*******************************************************************************/
@@ -15,25 +15,24 @@ package org.eclipse.cdt.managedbuilder.core;
/**
* This interface determines whether or not the option category is currently displayed.
- *
+ *
* @noextend This class is not intended to be subclassed by clients.
* @noimplement This interface is not intended to be implemented by clients.
- *
+ *
* @since 8.0
*/
public interface IOptionCategoryApplicability {
/**
* This method is queried whenever a new option category is displayed.
- *
- * @param configuration build configuration of option
+ *
+ * @param configuration build configuration of option
* (may be IConfiguration or IResourceConfiguration)
* @param optHolder contains the holder of the option
* @param category the option category itself
- *
+ *
* @return true if this option should be visible in the build options page,
* false otherwise
*/
- public boolean isOptionCategoryVisible(
- IBuildObject configuration,
- IHoldsOptions optHolder, IOptionCategory category);
+ public boolean isOptionCategoryVisible(IBuildObject configuration, IHoldsOptions optHolder,
+ IOptionCategory category);
}

Back to the top