当前位置: 首页>>代码示例>>Java>>正文


Java TailType.UNKNOWN属性代码示例

本文整理汇总了Java中com.intellij.codeInsight.TailType.UNKNOWN属性的典型用法代码示例。如果您正苦于以下问题:Java TailType.UNKNOWN属性的具体用法?Java TailType.UNKNOWN怎么用?Java TailType.UNKNOWN使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.intellij.codeInsight.TailType的用法示例。


在下文中一共展示了TailType.UNKNOWN属性的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getTailType

private static TailType getTailType(final char completionChar, LookupItem item)
{
	switch(completionChar)
	{
		case '.':
			return new CharTailType('.', false);
		case ',':
			return TailType.COMMA;
		case ';':
			return TailType.SEMICOLON;
		case '=':
			return TailType.EQ;
		case ' ':
			return TailType.SPACE;
		case ':':
			return TailType.CASE_COLON; //?
		case '<':
		case '>':
		case '\"':
	}
	final TailType attr = item.getTailType();
	return attr == TailType.UNKNOWN ? TailType.NONE : attr;
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:23,代码来源:DefaultInsertHandler.java

示例2: getTailType

private static TailType getTailType(final char completionChar, LookupItem item){
  switch(completionChar){
    case '.': return new CharTailType('.', false);
    case ',': return TailType.COMMA;
    case ';': return TailType.SEMICOLON;
    case '=': return TailType.EQ;
    case ' ': return TailType.SPACE;
    case ':': return TailType.CASE_COLON; //?
    case '<':
    case '>':
    case '\"':
  }
  final TailType attr = item.getTailType();
  return attr == TailType.UNKNOWN ? TailType.NONE : attr;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:15,代码来源:DefaultInsertHandler.java

示例3: handleInsert

@Override
public void handleInsert(final InsertionContext context) {
  final InsertHandler<? extends LookupElement> handler = getInsertHandler();
  if (handler != null) {
    //noinspection unchecked
    ((InsertHandler)handler).handleInsert(context, this);
  }
  if (getTailType() != TailType.UNKNOWN && myInsertHandler == null) {
    context.setAddCompletionChar(false);
    final TailType type = handleCompletionChar(context.getEditor(), this, context.getCompletionChar());
    type.processTail(context.getEditor(), context.getTailOffset());
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:13,代码来源:LookupItem.java

示例4: getTailType

protected TailType getTailType(final char completionChar, LookupItem item){
  switch(completionChar){
    case '.': return new CharTailType('.', false);
    case ',': return TailType.COMMA;
    case ';': return TailType.SEMICOLON;
    case '=': return TailType.EQ;
    case ' ': return TailType.SPACE;
    case ':': return TailType.CASE_COLON; //?
    case '<':
    case '>':
    case '\"':
  }
  final TailType attr = item.getTailType();
  return attr == TailType.UNKNOWN ? TailType.NONE : attr;
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:15,代码来源:DefaultInsertHandler.java

示例5: getTailType

@NotNull
public TailType getTailType(){
  final TailType tailType = getAttribute(TAIL_TYPE_ATTR);
  return tailType != null ? tailType : TailType.UNKNOWN;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:LookupItem.java

示例6: getTailType

@Nonnull
public TailType getTailType(){
  final TailType tailType = getAttribute(TAIL_TYPE_ATTR);
  return tailType != null ? tailType : TailType.UNKNOWN;
}
 
开发者ID:consulo,项目名称:consulo,代码行数:5,代码来源:LookupItem.java

示例7: insertTail

public static boolean insertTail(InsertionContext context, LookupElement item, TailType tailType, boolean hasTail)
{
	TailType toInsert = tailType;
	LookupItem<?> lookupItem = item.as(LookupItem.CLASS_CONDITION_KEY);
	if(lookupItem == null || lookupItem.getAttribute(LookupItem.TAIL_TYPE_ATTR) != TailType.UNKNOWN)
	{
		if(!hasTail && item.getObject() instanceof PsiMethod && PsiType.VOID.equals(((PsiMethod) item.getObject()).getReturnType()))
		{
			PsiDocumentManager.getInstance(context.getProject()).commitAllDocuments();
			if(psiElement().beforeLeaf(psiElement().withText(".")).accepts(context.getFile().findElementAt(context.getTailOffset() - 1)))
			{
				return false;
			}

			boolean insertAdditionalSemicolon = true;
			PsiElement leaf = context.getFile().findElementAt(context.getStartOffset());
			PsiElement composite = leaf == null ? null : leaf.getParent();
			if(composite instanceof PsiMethodReferenceExpression && LambdaHighlightingUtil.insertSemicolon(composite.getParent()))
			{
				insertAdditionalSemicolon = false;
			}
			else if(composite instanceof PsiReferenceExpression)
			{
				PsiElement parent = composite.getParent();
				if(parent instanceof PsiMethodCallExpression)
				{
					parent = parent.getParent();
				}
				if(parent instanceof PsiLambdaExpression && !LambdaHighlightingUtil.insertSemicolonAfter((PsiLambdaExpression) parent))
				{
					insertAdditionalSemicolon = false;
				}
			}
			if(insertAdditionalSemicolon)
			{
				toInsert = TailType.SEMICOLON;
			}

		}
	}
	toInsert.processTail(context.getEditor(), context.getTailOffset());
	return true;
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:43,代码来源:JavaCompletionUtil.java


注:本文中的com.intellij.codeInsight.TailType.UNKNOWN属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。