Spellchecker - do not produce out-of-element inspection highlight ranges
[fedora-idea.git] / plugins / spellchecker / src / com / intellij / spellchecker / tokenizer / Token.java
blob903cabaecd0767442a203d954311c63f629c009d
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.spellchecker.tokenizer;
18 import com.intellij.psi.PsiElement;
20 /**
21 * Created by IntelliJ IDEA.
23 * @author shkate@jetbrains.com
25 public class Token<T extends PsiElement> {
27 private String text;
28 private String description;
29 private T element;
30 private boolean useRename;
31 private int offset;
33 public Token(T element, String text, boolean useRename) {
34 this.element = element;
35 this.text = text;
36 this.useRename = useRename;
39 public Token(T element, String text, boolean useRename, int offset) {
40 this.element = element;
41 this.text = text;
42 this.useRename = useRename;
43 this.offset = offset;
46 public Token(T element, String text, String description, boolean useRename) {
47 this.element = element;
48 this.text = text;
49 this.description = description;
50 this.useRename = useRename;
53 public String getText() {
54 return text;
57 public String getDescription() {
58 return description;
61 public T getElement() {
62 return element;
65 public boolean isUseRename() {
66 return useRename;
69 public int getOffset() {
70 return offset;