1 11 12 package org.eclipse.jdt.internal.ui.search; 13 14 import org.eclipse.jdt.ui.search.IQueryParticipant; 15 16 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 30 public SearchParticipantDescriptor getDescriptor() { 31 return fDescriptor; 32 } 33 36 public IQueryParticipant getParticipant() { 37 return fParticipant; 38 } 39 } 40 | Popular Tags |