Changes:
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / CompletionRequestorAdapter.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.core;
12
13 import net.sourceforge.phpdt.core.compiler.IProblem;
14
15
16 /**
17  * Adapter of the requestor interface <code>ICompletionRequestor</code>.
18  * <p>
19  * This class is intended to be instanciated and subclassed by clients.
20  * </p>
21  *
22  * @see ICompletionRequestor
23  * @since 2.0
24  */
25 public class CompletionRequestorAdapter implements ICompletionRequestor {
26
27         /*
28          * @see ICompletionRequestor#acceptAnonymousType(char[], char[], char[][], char[][], char[][], char[], int, int, int)
29          */
30         public void acceptAnonymousType(
31                 char[] superTypePackageName,
32                 char[] superTypeName,
33                 char[][] parameterPackageNames,
34                 char[][] parameterTypeNames,
35                 char[][] parameterNames,
36                 char[] completionName,
37                 int modifiers,
38                 int completionStart,
39                 int completionEnd,
40                 int relevance) {
41         }
42
43         /*
44          * @see ICompletionRequestor#acceptClass(char[], char[], char[], int, int, int)
45          */
46         public void acceptClass(
47                 char[] packageName,
48                 char[] className,
49                 char[] completionName,
50                 int modifiers,
51                 int completionStart,
52                 int completionEnd,
53                 int relevance) {
54         }
55
56         /*
57          * @see ICompletionRequestor#acceptError(IProblem)
58          */
59         public void acceptError(IProblem error) {
60         }
61
62         /*
63          * @see ICompletionRequestor#acceptField(char[], char[], char[], char[], char[], char[], int, int, int)
64          */
65         public void acceptField(
66                 char[] declaringTypePackageName,
67                 char[] declaringTypeName,
68                 char[] name,
69                 char[] typePackageName,
70                 char[] typeName,
71                 char[] completionName,
72                 int modifiers,
73                 int completionStart,
74                 int completionEnd,
75                 int relevance) {
76         }
77
78         /*
79          * @see ICompletionRequestor#acceptInterface(char[], char[], char[], int, int, int)
80          */
81         public void acceptInterface(
82                 char[] packageName,
83                 char[] interfaceName,
84                 char[] completionName,
85                 int modifiers,
86                 int completionStart,
87                 int completionEnd,
88                 int relevance) {
89         }
90
91         /*
92          * @see ICompletionRequestor#acceptKeyword(char[], int, int)
93          */
94         public void acceptKeyword(
95                 char[] keywordName,
96                 int completionStart,
97                 int completionEnd,
98                 int relevance) {
99         }
100
101         /*
102          * @see ICompletionRequestor#acceptLabel(char[], int, int)
103          */
104         public void acceptLabel(
105                 char[] labelName,
106                 int completionStart,
107                 int completionEnd,
108                 int relevance) {
109         }
110
111         /*
112          * @see ICompletionRequestor#acceptLocalVariable(char[], char[], char[], int, int, int)
113          */
114         public void acceptLocalVariable(
115                 char[] name,
116                 char[] typePackageName,
117                 char[] typeName,
118                 int modifiers,
119                 int completionStart,
120                 int completionEnd,
121                 int relevance) {
122         }
123
124         /*
125          * @see ICompletionRequestor#acceptMethod(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int)
126          */
127         public void acceptMethod(
128                 char[] declaringTypePackageName,
129                 char[] declaringTypeName,
130                 char[] selector,
131                 char[][] parameterPackageNames,
132                 char[][] parameterTypeNames,
133                 char[][] parameterNames,
134                 char[] returnTypePackageName,
135                 char[] returnTypeName,
136                 char[] completionName,
137                 int modifiers,
138                 int completionStart,
139                 int completionEnd,
140                 int relevance) {
141         }
142
143         /*
144          * @see ICompletionRequestor#acceptMethodDeclaration(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int)
145          */
146         public void acceptMethodDeclaration(
147                 char[] declaringTypePackageName,
148                 char[] declaringTypeName,
149                 char[] selector,
150                 char[][] parameterPackageNames,
151                 char[][] parameterTypeNames,
152                 char[][] parameterNames,
153                 char[] returnTypePackageName,
154                 char[] returnTypeName,
155                 char[] completionName,
156                 int modifiers,
157                 int completionStart,
158                 int completionEnd,
159                 int relevance) {
160         }
161
162         /*
163          * @see ICompletionRequestor#acceptModifier(char[], int, int)
164          */
165         public void acceptModifier(
166                 char[] modifierName,
167                 int completionStart,
168                 int completionEnd,
169                 int relevance) {
170         }
171
172         /*
173          * @see ICompletionRequestor#acceptPackage(char[], char[], int, int)
174          */
175         public void acceptPackage(
176                 char[] packageName,
177                 char[] completionName,
178                 int completionStart,
179                 int completionEnd,
180                 int relevance) {
181         }
182
183         /*
184          * @see ICompletionRequestor#acceptType(char[], char[], char[], int, int)
185          */
186         public void acceptType(
187                 char[] packageName,
188                 char[] typeName,
189                 char[] completionName,
190                 int completionStart,
191                 int completionEnd,
192                 int relevance) {
193         }
194
195         /*
196          * @see ICompletionRequestor#acceptVariableName(char[], char[], char[], char[], int, int)
197          */
198         public void acceptVariableName(
199                 char[] typePackageName,
200                 char[] typeName,
201                 char[] name,
202                 char[] completionName,
203                 int completionStart,
204                 int completionEnd,
205                 int relevance) {
206         }
207 }