summaryrefslogtreecommitdiff
path: root/plugins/structuralsearch/source/com/intellij/structuralsearch/plugin/replace/ReplacementInfo.java
blob: 6b74197c19ddd71fccb86562a7eb4ffb7efaf09f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.intellij.structuralsearch.plugin.replace;

import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.Nullable;

/**
 * Created by IntelliJ IDEA.
 * User: maxim
 * Date: 03.12.2004
 * Time: 21:33:53
 * To change this template use File | Settings | File Templates.
 */
public abstract class ReplacementInfo {
  public abstract String getReplacement();

  public abstract void setReplacement(String replacement);

  @Nullable
  public abstract PsiElement getMatch(int index);

  public abstract int getMatchesCount();
}