本文整理汇总了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;
}
示例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;
}
示例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());
}
}
示例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;
}
示例5: getTailType
@NotNull
public TailType getTailType(){
final TailType tailType = getAttribute(TAIL_TYPE_ATTR);
return tailType != null ? tailType : TailType.UNKNOWN;
}
示例6: getTailType
@Nonnull
public TailType getTailType(){
final TailType tailType = getAttribute(TAIL_TYPE_ATTR);
return tailType != null ? tailType : TailType.UNKNOWN;
}
示例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;
}