com.intellij.codeInsight.template.emmet.tokens.ZenCodingTokenImpl 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 ZenCodingTokenImpl extends ZenCodingToken {
private final String myString;
public ZenCodingTokenImpl(String string) {
myString = string;
}
@Override
public String toString() {
return myString;
}
}