Home | History | Annotate | Download | only in leaf
      1 package org.jf.smalidea.psi.leaf;
      2 
      3 import com.intellij.psi.PsiIdentifier;
      4 import com.intellij.psi.impl.source.tree.LeafPsiElement;
      5 import com.intellij.psi.tree.IElementType;
      6 import org.jf.smalidea.SmaliTokens;
      7 
      8 public class SmaliClassDescriptor extends LeafPsiElement implements PsiIdentifier {
      9     public SmaliClassDescriptor(CharSequence text) {
     10         super(SmaliTokens.CLASS_DESCRIPTOR, text);
     11     }
     12 
     13     @Override
     14     public IElementType getTokenType() {
     15         return SmaliTokens.CLASS_DESCRIPTOR;
     16     }
     17 }
     18