| Package | com.addicted2flash.util |
| Class | public class Entry |
| Implements | IDisposable |
| Property | Defined by | ||
|---|---|---|---|
| key : * | Entry | ||
| next : Entry | Entry | ||
| prev : Entry | Entry | ||
| value : * | Entry | ||
| Method | Defined by | ||
|---|---|---|---|
|
Create a new
Entry. | Entry | ||
|
clearAndCombine():void
clear instance and combine pre and post node (if existing).
| Entry | ||
|
dispose():void
free memory for garbage collection.
| Entry | ||
|
add a node as predecessor ( also handles dependencies f.e pre/post ).
| Entry | ||
| key | property |
public var key:*
| next | property |
public var next:Entry
| prev | property |
public var prev:Entry
| value | property |
public var value:*
| Entry | () | constructor |
public function Entry(key:*, value:Entry, next:* = null)
Create a new Entry.
key:* — (optional) key
|
|
value:Entry — (optional) value
|
|
next:* (default = null) |
| clearAndCombine | () | method |
public function clearAndCombine():voidclear instance and combine pre and post node (if existing).
| dispose | () | method |
public function dispose():voidfree memory for garbage collection.
| preAdd | () | method |
public function preAdd(node:Entry):voidadd a node as predecessor ( also handles dependencies f.e pre/post ).
Parametersnode:Entry — predecessor
|