Java源码示例:com.intellij.usages.impl.NullUsage

示例1
public StringNode(Object string) {
  super(NullUsage.INSTANCE,
      new UsageViewTreeModelBuilder(new UsageViewPresentation(), UsageTarget.EMPTY_ARRAY));
  myString = string;
}
 
示例2
public StringNode(Object string) {
  super(NullUsage.INSTANCE, new UsageViewTreeModelBuilder(new UsageViewPresentation(), UsageTarget.EMPTY_ARRAY));
  myString = string;
}