KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > ui > search > SearchParticipantRecord


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11
12 package org.eclipse.jdt.internal.ui.search;
13
14 import org.eclipse.jdt.ui.search.IQueryParticipant;
15
16 /**
17  */

18 public class SearchParticipantRecord {
19     private SearchParticipantDescriptor fDescriptor;
20     private IQueryParticipant fParticipant;
21
22     public SearchParticipantRecord(SearchParticipantDescriptor descriptor, IQueryParticipant participant) {
23         super();
24         fDescriptor= descriptor;
25         fParticipant= participant;
26     }
27     /**
28      * @return Returns the descriptor.
29      */

30     public SearchParticipantDescriptor getDescriptor() {
31         return fDescriptor;
32     }
33     /**
34      * @return Returns the participant.
35      */

36     public IQueryParticipant getParticipant() {
37         return fParticipant;
38     }
39 }
40
Popular Tags