com.intellij.codeInsight.template.emmet.tokens.IdentifierToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml Show documentation
Show all versions of xml Show documentation
A packaging of the IntelliJ Community Edition xml library.
This is release number 1 of trunk branch 142.
The newest version!
package com.intellij.codeInsight.template.emmet.tokens;
import org.jetbrains.annotations.NotNull;
/**
* @author Eugene.Kudelevsky
*/
public class IdentifierToken extends ZenCodingToken {
private final String myText;
public IdentifierToken(@NotNull String text) {
myText = text;
}
@Override
public String toString() {
return myText;
}
public String getText() {
return myText;
}
}