All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.intellij.codeInsight.template.emmet.tokens.IdentifierToken Maven / Gradle / Ivy

Go to download

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy