X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/codeassist/ISearchRequestor.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/codeassist/ISearchRequestor.java index a7ddb3a..c2ae18c 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/codeassist/ISearchRequestor.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/codeassist/ISearchRequestor.java @@ -1,60 +1,61 @@ /******************************************************************************* - * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others. + * Copyright (c) 2000, 2003 IBM Corporation and others. * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Common Public License v0.5 + * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/cpl-v05.html + * http://www.eclipse.org/legal/cpl-v10.html * * Contributors: * IBM Corporation - initial API and implementation - ******************************************************************************/ + *******************************************************************************/ package net.sourceforge.phpdt.internal.codeassist; /** - * This is the internal requestor passed to the searchable name environment - * so as to process the multiple search results as they are discovered. - * - * It is used to allow the code assist engine to add some more information - * to the raw name environment results before answering them to the UI. + * This is the internal requestor passed to the searchable name environment so + * as to process the multiple search results as they are discovered. + * + * It is used to allow the code assist engine to add some more information to + * the raw name environment results before answering them to the UI. */ public interface ISearchRequestor { - + /** * One result of the search consists of a new class. - * + * * NOTE - All package and type names are presented in their readable form: - * Package names are in the form "a.b.c". - * Nested type names are in the qualified form "A.M". - * The default package is represented by an empty array. + * Package names are in the form "a.b.c". Nested type names are in the + * qualified form "A.M". The default package is represented by an empty + * array. */ public void acceptClass(char[] packageName, char[] typeName, int modifiers); /** * One result of the search consists of a new interface. - * + * * NOTE - All package and type names are presented in their readable form: - * Package names are in the form "a.b.c". - * Nested type names are in the qualified form "A.I". - * The default package is represented by an empty array. + * Package names are in the form "a.b.c". Nested type names are in the + * qualified form "A.I". The default package is represented by an empty + * array. */ - public void acceptInterface(char[] packageName, char[] typeName, int modifiers); + public void acceptInterface(char[] packageName, char[] typeName, + int modifiers); /** * One result of the search consists of a new package. - * - * NOTE - All package names are presented in their readable form: - * Package names are in the form "a.b.c". - * The default package is represented by an empty array. + * + * NOTE - All package names are presented in their readable form: Package + * names are in the form "a.b.c". The default package is represented by an + * empty array. */ public void acceptPackage(char[] packageName); /** * One result of the search consists of a new type. - * + * * NOTE - All package and type names are presented in their readable form: - * Package names are in the form "a.b.c". - * Nested type names are in the qualified form "A.M". - * The default package is represented by an empty array. + * Package names are in the form "a.b.c". Nested type names are in the + * qualified form "A.M". The default package is represented by an empty + * array. */ public void acceptType(char[] packageName, char[] typeName); -} \ No newline at end of file +}