本文整理汇总了Java中com.intellij.refactoring.introduceField.IntroduceFieldHandler.REFACTORING_NAME属性的典型用法代码示例。如果您正苦于以下问题:Java IntroduceFieldHandler.REFACTORING_NAME属性的具体用法?Java IntroduceFieldHandler.REFACTORING_NAME怎么用?Java IntroduceFieldHandler.REFACTORING_NAME使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.intellij.refactoring.introduceField.IntroduceFieldHandler
的用法示例。
在下文中一共展示了IntroduceFieldHandler.REFACTORING_NAME属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: GrInplaceFieldIntroducer
public GrInplaceFieldIntroducer(GrIntroduceContext context, OccurrencesChooser.ReplaceChoice choice) {
super(IntroduceFieldHandler.REFACTORING_NAME, choice, context);
finalListener = new GrFinalListener(myEditor);
myLocalVar = GrIntroduceHandlerBase.resolveLocalVar(context);
if (myLocalVar != null) {
//myLocalVariable = myLocalVar;
ArrayList<String> result = ContainerUtil.newArrayList(myLocalVar.getName());
GrExpression initializer = myLocalVar.getInitializerGroovy();
if (initializer != null) {
ContainerUtil.addAll(result, GroovyNameSuggestionUtil.suggestVariableNames(initializer, new GroovyInplaceFieldValidator(getContext()), false));
}
mySuggestedNames = ArrayUtil.toStringArray(result);
}
else {
mySuggestedNames = GroovyNameSuggestionUtil.suggestVariableNames(context.getExpression(), new GroovyInplaceFieldValidator(getContext()), false);
}
myApplicablePlaces = getApplicableInitPlaces();
}
示例2: GrInplaceFieldIntroducer
public GrInplaceFieldIntroducer(GrVariable var,
GrIntroduceContext context,
List<RangeMarker> occurrences,
boolean replaceAll,
@Nullable RangeMarker expressionRangeMarker,
@Nullable RangeMarker stringPartRangeMarker,
GrExpression initializer) {
super(var, context.getEditor(), context.getProject(), IntroduceFieldHandler.REFACTORING_NAME, occurrences, context.getPlace());
myContext = context;
myReplaceAll = replaceAll;
myExpressionRangeMarker = expressionRangeMarker;
myStringPartRangeMarker = stringPartRangeMarker;
myInitializer = initializer;
myPanel = new GrInplaceIntroduceFieldPanel(context.getProject(),
GrIntroduceFieldHandler.getApplicableInitPlaces(context));
finalListener = new GrFinalListener(myEditor);
}
示例3: getActionName
@Override
protected String getActionName() {
return IntroduceFieldHandler.REFACTORING_NAME;
}
示例4: getRefactoringName
@NotNull
@Override
protected String getRefactoringName() {
return IntroduceFieldHandler.REFACTORING_NAME;
}