1 11 package org.eclipse.jdt.internal.core; 12 13 public interface INamingRequestor { 14 void acceptNameWithPrefixAndSuffix(char[] name, boolean isFirstPrefix, boolean isFirstSuffix, int reusedCharacters); 15 void acceptNameWithPrefix(char[] name, boolean isFirstPrefix, int reusedCharacters); 16 void acceptNameWithSuffix(char[] name, boolean isFirstSuffix, int reusedCharacters); 17 void acceptNameWithoutPrefixAndSuffix(char[] name, int reusedCharacters); 18 } 19 | Popular Tags |