Home | History | Annotate | Download | only in leaf
      1 package org.jf.smalidea.psi.leaf;
      2 
      3 import com.intellij.psi.impl.source.tree.LeafPsiElement;
      4 import org.jf.smalidea.SmaliTokens;
      5 
      6 public class SmaliSimpleName extends LeafPsiElement {
      7     public SmaliSimpleName(CharSequence text) {
      8         super(SmaliTokens.SIMPLE_NAME, text);
      9     }
     10 }
     11