Legacy:ListItem: Difference between revisions

From Unreal Wiki, The Unreal Engine Documentation Site
No edit summary
 
mNo edit summary
 
Line 1: Line 1:
{{classbox| [[Legacy:Object|Object]] >> ListItem}}
{{classbox| [[Legacy:UT|UT]] :: [[Legacy:Object (UT)|Object (UT)]] >> ListItem (Package: UTServerAdmin)}}
:


A simple two-way linked list used by the remote server administration ([[Legacy:UTServerAdmin|UTServerAdmin]]) to build lists of maps, mutators, etc.
{{classbox|[[Legacy:UT2003|UT2003]] :: [[Legacy:Object|Object]] >> ListItem (Package: XWebAdmin)}}


==Properties ==
A simple two-way [[Legacy:Linked List|linked list]] used by the web-based remote server administration ([[Legacy:UTServerAdmin|UTServerAdmin]]) to build lists of maps, mutators, etc.
 
==Properties==
; ListItem Next : The next item in the list.
; ListItem Next : The next item in the list.
; ListItem Prev : The previous item in the list.
; ListItem Prev : The previous item in the list.
Line 10: Line 13:
; bool bJustMoved :
; bool bJustMoved :


==Functions ==
==Methods==
; function AddElement(ListItem NewElement) :
; AddElement (ListItem NewElement) :
; function AddSortedElement(out ListItem FirstElement, ListItem NewElement) :
; AddSortedElement (out ListItem FirstElement, ListItem NewElement) :
; function ListItem FindItem(String SearchData) :  
; ListItem FindItem (String SearchData) :  
; function ListItem DeleteElement(out ListItem First, optional String SearchData) :
; ListItem DeleteElement (out ListItem First, optional String SearchData) :
; function MoveElementUp(out ListItem First, ListItem MoveItem, out int Count) :
; MoveElementUp (out ListItem First, ListItem MoveItem, out int Count) :
; function MoveElementDown(out ListItem First, ListItem MoveItem, out int Count) :
; MoveElementDown (out ListItem First, ListItem MoveItem, out int Count) :
; function RunTest() : This function is obviously used for testing.
; RunTest ( ) : This function is obviously used for testing.
 
[[Category:Legacy Class (UT)|{{PAGENAME}}]]
[[Category:Legacy Class (UT2003)|{{PAGENAME}}]]

Latest revision as of 03:57, 27 May 2003

UT :: Object (UT) >> ListItem (Package: UTServerAdmin)
UT2003 :: Object >> ListItem (Package: XWebAdmin)

A simple two-way linked list used by the web-based remote server administration (UTServerAdmin) to build lists of maps, mutators, etc.

Properties

ListItem Next
The next item in the list.
ListItem Prev
The previous item in the list.
string Tag
string Data
bool bJustMoved

Methods

AddElement (ListItem NewElement)
AddSortedElement (out ListItem FirstElement, ListItem NewElement)
ListItem FindItem (String SearchData)
ListItem DeleteElement (out ListItem First, optional String SearchData)
MoveElementUp (out ListItem First, ListItem MoveItem, out int Count)
MoveElementDown (out ListItem First, ListItem MoveItem, out int Count)
RunTest ( )
This function is obviously used for testing.