Package logging

Klasse LogElementList<LOG extends LogElement>

Alle implementierten Schnittstellen:
Serializable, Cloneable, Iterable, Collection, List, RandomAccess, SequencedCollection

public final class LogElementList<LOG extends LogElement> extends Vector
This class provides a container for log list elements. Use it in assoziation with packages logging and visualization. In general you will not have to extend this class so it is final.
Siehe auch:
  • Felddetails

    • actual

      private int actual
      Index of the Lists actual element.
    • initialized

      private boolean initialized
      Determines wether the log element list's index is valid or not.
  • Konstruktordetails

    • LogElementList

      public LogElementList()
      Standard constructor. Creates an empty uninitialized log list with index -1.
  • Methodendetails

    • get

      public Object get()
      Returns the log lists actual element identified by member actual.
      Gibt zurück:
      the log lists actual element
    • isInitialized

      public boolean isInitialized()
      Returns wether the log element list is initialized or not.
      Gibt zurück:
      true if list is initialized, false if not
    • clear

      public void clear()
      Clears the log list.
      Angegeben von:
      clear in Schnittstelle Collection<LOG extends LogElement>
      Angegeben von:
      clear in Schnittstelle List<LOG extends LogElement>
      Setzt außer Kraft:
      clear in Klasse Vector
    • prev

      public void prev()
      Sets the actual's element's previous as actual.
    • next

      public void next()
      Sets the actual's element's next as actual.
    • first

      public void first()
      Sets the first element as actual.
    • last

      public void last()
      Sets the last element as actual.