1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / INamingRequestor.java
index 4efbb83..d394e06 100644 (file)
 package net.sourceforge.phpdt.internal.core;
 
 public interface INamingRequestor {
-       void acceptNameWithPrefixAndSuffix(char[] name, boolean isFirstPrefix, boolean isFirstSuffix);
+       void acceptNameWithPrefixAndSuffix(char[] name, boolean isFirstPrefix,
+                       boolean isFirstSuffix);
+
        void acceptNameWithPrefix(char[] name, boolean isFirstPrefix);
+
        void acceptNameWithSuffix(char[] name, boolean isFirstSuffix);
+
        void acceptNameWithoutPrefixAndSuffix(char[] name);
 }