All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----simset.Linkage | +----simset.Link
The list is held in a Head object. The items are represented by objects of class Link, or more usefully, subclasses of Link.
public Link()
public final void out()
public final void follow(simset.Linkage ptr)
The item is inserted after the one referred to by the parameter, after having removed it from the list (if any) that is currently in. If the parameter refers to a Head, the effect is to put this object into first place in the list. If the parameter is null or does not belong to a list and is not a Head object, the effect is the same as out().
public final void precede(simset.Linkage ptr)
The item is inserted before the one referred to by the parameter, after having removed it from the list (if any) that is currently in. If the parameter refers to a Head, the effect is to put this object into last place in the list. If the parameter is null or does not belong to a list and is not a Head object, the effect is the same as out().
public final void into(simset.Head s)
The item is inserted last in the list referred to by the parameter, after having removed it from any list that is currently in. If the parameter is null, the effect is the same as out().
All Packages Class Hierarchy This Package Previous Next Index