Represents an object that can be displayed by content assistant. More...
Public Member Functions | |
| def | __cmp__ (self, other) |
| def | __eq__ (self, other) |
| def | __hash__ (self) |
| def | __init__ (self, name, source, details) |
| Creates an item info. More... | |
| def | is_library_keyword (self) |
| def | is_user_keyword (self) |
| def | longname_begins_with (self, prefix) |
| def | name_begins_with (self, prefix) |
Static Public Member Functions | |
| def | m_cmp (a, b) |
Public Attributes | |
| details | |
| name | |
| source | |
Properties | |
| longname = property | |
Private Member Functions | |
| def | longname (self) |
Private Attributes | |
| _priority | |
Represents an object that can be displayed by content assistant.
Definition at line 24 of file iteminfo.py.
| def robotide.spec.iteminfo.ItemInfo.__init__ | ( | self, | |
| name, | |||
| source, | |||
| details | |||
| ) |
Creates an item info.
:Parameters:
name
Item name. Is shown in the first column of the content assist popup.
source
Item source. Is shown in the second column of the content assist popup.
details
Detailed information for item that is shown in the additional popup
besides the list that contains content assist values. Will be
displayed as HTML.
Reimplemented in robotide.spec.iteminfo.VariableInfo.
Definition at line 38 of file iteminfo.py.
| def robotide.spec.iteminfo.ItemInfo.__cmp__ | ( | self, | |
| other | |||
| ) |
Definition at line 67 of file iteminfo.py.
| def robotide.spec.iteminfo.ItemInfo.__eq__ | ( | self, | |
| other | |||
| ) |
Reimplemented in robotide.spec.iteminfo.ResourceUserKeywordInfo, robotide.spec.iteminfo.TestCaseUserKeywordInfo, robotide.spec.iteminfo.BlockKeywordInfo, robotide.spec.iteminfo.LibraryKeywordInfo, robotide.spec.iteminfo._KeywordInfo, robotide.spec.iteminfo.ArgumentInfo, and robotide.spec.iteminfo.VariableInfo.
Definition at line 73 of file iteminfo.py.
| def robotide.spec.iteminfo.ItemInfo.__hash__ | ( | self | ) |
Reimplemented in robotide.spec.iteminfo.ResourceUserKeywordInfo, robotide.spec.iteminfo.TestCaseUserKeywordInfo, robotide.spec.iteminfo.BlockKeywordInfo, robotide.spec.iteminfo.LibraryKeywordInfo, robotide.spec.iteminfo._KeywordInfo, robotide.spec.iteminfo.ArgumentInfo, and robotide.spec.iteminfo.VariableInfo.
Definition at line 76 of file iteminfo.py.
| def robotide.spec.iteminfo.ItemInfo.is_library_keyword | ( | self | ) |
Reimplemented in robotide.spec.iteminfo.BlockKeywordInfo, robotide.spec.iteminfo.LibraryKeywordInfo, and robotide.spec.iteminfo._XMLKeywordContent.
Definition at line 57 of file iteminfo.py.
| def robotide.spec.iteminfo.ItemInfo.is_user_keyword | ( | self | ) |
Definition at line 60 of file iteminfo.py.
|
private |
Reimplemented in robotide.spec.iteminfo.ResourceUserKeywordInfo, and robotide.spec.iteminfo.TestCaseUserKeywordInfo.
Definition at line 48 of file iteminfo.py.
| def robotide.spec.iteminfo.ItemInfo.longname_begins_with | ( | self, | |
| prefix | |||
| ) |
Definition at line 54 of file iteminfo.py.
|
static |
Definition at line 64 of file iteminfo.py.
| def robotide.spec.iteminfo.ItemInfo.name_begins_with | ( | self, | |
| prefix | |||
| ) |
Definition at line 51 of file iteminfo.py.
|
private |
Definition at line 43 of file iteminfo.py.
| robotide.spec.iteminfo.ItemInfo.details |
Definition at line 42 of file iteminfo.py.
| robotide.spec.iteminfo.ItemInfo.name |
Definition at line 39 of file iteminfo.py.
| robotide.spec.iteminfo.ItemInfo.source |
Definition at line 40 of file iteminfo.py.
|
static |
Definition at line 46 of file iteminfo.py.