X-Git-Url: http://secure.phpeclipse.com

diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/IJavaElementSearchConstants.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/IJavaElementSearchConstants.java
index 705fe7c..699d33e 100644
--- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/IJavaElementSearchConstants.java
+++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/IJavaElementSearchConstants.java
@@ -15,48 +15,49 @@ package net.sourceforge.phpdt.ui;
  * <p>
  * This interface declares constants only; it is not intended to be implemented.
  * </p>
- *
+ * 
  * @see JavaUI
  */
 public interface IJavaElementSearchConstants {
 
-	/** 
-	 * Search scope constant (bit mask) indicating that classes should be considered.
-	 * Used when opening certain kinds of selection dialogs.
+	/**
+	 * Search scope constant (bit mask) indicating that classes should be
+	 * considered. Used when opening certain kinds of selection dialogs.
 	 */
-	public static final int CONSIDER_CLASSES= 1 << 1;
+	public static final int CONSIDER_CLASSES = 1 << 1;
 
-	/** 
-	 * Search scope constant (bit mask) indicating that interfaces should be considered.
-	 * Used when opening certain kinds of selection dialogs.
+	/**
+	 * Search scope constant (bit mask) indicating that interfaces should be
+	 * considered. Used when opening certain kinds of selection dialogs.
 	 */
-	public static final int CONSIDER_INTERFACES= 1 << 2;
+	public static final int CONSIDER_INTERFACES = 1 << 2;
 
 	/**
-	 * Search scope constant (bit mask) indicating that both classes and interfaces 
-	 * should be considered. Equivalent to
+	 * Search scope constant (bit mask) indicating that both classes and
+	 * interfaces should be considered. Equivalent to
 	 * <code>CONSIDER_CLASSES | CONSIDER_INTERFACES</code>.
 	 */
-	public static final int CONSIDER_TYPES= CONSIDER_CLASSES | CONSIDER_INTERFACES;
+	public static final int CONSIDER_TYPES = CONSIDER_CLASSES
+			| CONSIDER_INTERFACES;
 
 	/**
-	 * Search scope constant (bit mask) indicating that binaries should be considered.
-	 * Used when opening certain kinds of selection dialogs.
+	 * Search scope constant (bit mask) indicating that binaries should be
+	 * considered. Used when opening certain kinds of selection dialogs.
 	 */
-	public static final int CONSIDER_BINARIES= 1 << 3;
+	public static final int CONSIDER_BINARIES = 1 << 3;
 
 	/**
-	 * Search scope constant (bit mask) indicating that external JARs should be considered.
-	 * Used when opening certain kinds of selection dialogs.
+	 * Search scope constant (bit mask) indicating that external JARs should be
+	 * considered. Used when opening certain kinds of selection dialogs.
 	 */
-	public static final int CONSIDER_EXTERNAL_JARS= 1 << 4;
+	public static final int CONSIDER_EXTERNAL_JARS = 1 << 4;
 
 	/**
-	 * Search scope constant (bit mask) indicating that required projects should be considered.
-	 * Used when opening certain kinds of selection dialogs.
+	 * Search scope constant (bit mask) indicating that required projects should
+	 * be considered. Used when opening certain kinds of selection dialogs.
 	 * 
 	 * @since 2.0
-	 */	
-	public static final int CONSIDER_REQUIRED_PROJECTS= 1 << 5;
+	 */
+	public static final int CONSIDER_REQUIRED_PROJECTS = 1 << 5;
 
 }