A massive organize imports and formatting of the sources using default Eclipse code...
[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);
 }