![JAR search and dependency download from the Maven repository](/logo.png)
com.intellij.codeInsight.template.emmet.tokens.TextToken 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;
/**
* @author Eugene.Kudelevsky
*/
public class TextToken extends ZenCodingToken {
private final String myText;
public TextToken(String text) {
myText = text;
}
public String getText() {
return myText;
}
@Override
public String toString() {
return myText;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy