Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2011-09-15 03:04:23 +0000
committernitind2011-09-15 03:04:23 +0000
commit00191cfdbc2e47d94a72b45c758ff855683e5ba4 (patch)
tree0066947966aa6ee7edb2d0e23efe17cc690f1686 /bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/INamingRequestor.java
parent6ad86dc21ee96e5637061a68a5c353a17792f256 (diff)
downloadwebtools.jsdt.core-201109150305.tar.gz
webtools.jsdt.core-201109150305.tar.xz
webtools.jsdt.core-201109150305.zip
This commit was manufactured by cvs2svn to create tag 'v201109150305'.v201109150305
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/INamingRequestor.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/INamingRequestor.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/INamingRequestor.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/INamingRequestor.java
deleted file mode 100644
index 159ffd00..00000000
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/INamingRequestor.java
+++ /dev/null
@@ -1,18 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.internal.core;
-
-public interface INamingRequestor {
- void acceptNameWithPrefixAndSuffix(char[] name, boolean isFirstPrefix, boolean isFirstSuffix, int reusedCharacters);
- void acceptNameWithPrefix(char[] name, boolean isFirstPrefix, int reusedCharacters);
- void acceptNameWithSuffix(char[] name, boolean isFirstSuffix, int reusedCharacters);
- void acceptNameWithoutPrefixAndSuffix(char[] name, int reusedCharacters);
-}

Back to the top