Package com.artenum.rosetta.core
Class CompletionItemImpl
- java.lang.Object
-
- com.artenum.rosetta.core.CompletionItemImpl
-
- All Implemented Interfaces:
CompletionItem
,java.lang.Comparable<CompletionItem>
public class CompletionItemImpl extends java.lang.Object implements CompletionItem
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
help
private java.lang.String
methodProfile
private java.lang.String
returnValue
private java.lang.String
type
-
Constructor Summary
Constructors Constructor Description CompletionItemImpl()
CompletionItemImpl(java.lang.String type, java.lang.String methodProfile, java.lang.String returnValue, java.lang.String help)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(CompletionItem o)
java.lang.String
getHelp()
java.lang.String
getMethodProfile()
java.lang.String
getReturnValue()
java.lang.String
getType()
void
setHelp(java.lang.String help)
void
setMethodProfile(java.lang.String methodProfile)
void
setReturnValue(java.lang.String returnValue)
void
setType(java.lang.String type)
-
-
-
Method Detail
-
getHelp
public java.lang.String getHelp()
- Specified by:
getHelp
in interfaceCompletionItem
-
setHelp
public void setHelp(java.lang.String help)
- Specified by:
setHelp
in interfaceCompletionItem
-
getMethodProfile
public java.lang.String getMethodProfile()
- Specified by:
getMethodProfile
in interfaceCompletionItem
-
setMethodProfile
public void setMethodProfile(java.lang.String methodProfile)
- Specified by:
setMethodProfile
in interfaceCompletionItem
-
getReturnValue
public java.lang.String getReturnValue()
- Specified by:
getReturnValue
in interfaceCompletionItem
-
setReturnValue
public void setReturnValue(java.lang.String returnValue)
- Specified by:
setReturnValue
in interfaceCompletionItem
-
getType
public java.lang.String getType()
- Specified by:
getType
in interfaceCompletionItem
-
setType
public void setType(java.lang.String type)
- Specified by:
setType
in interfaceCompletionItem
-
compareTo
public int compareTo(CompletionItem o)
- Specified by:
compareTo
in interfacejava.lang.Comparable<CompletionItem>
-
-