Added auto activation for HTML characters (i.e. <&#) in the Preference Page
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / php / PHPCompletionProcessor.java
index 893e0c1..64fcaff 100644 (file)
@@ -251,6 +251,15 @@ public class PHPCompletionProcessor implements IContentAssistProcessor {
   }
   
   /**
+   * Tells this processor to order the proposals alphabetically.
+   * 
+   * @param order <code>true</code> if proposals should be ordered.
+   */
+  public void orderProposalsAlphabetically(boolean order) {
+    fComparator.setOrderAlphabetically(order);
+  }
+  
+  /**
    * Sets this processor's set of characters triggering the activation of the
    * completion proposal computation.
    *