Class Kurs

java.lang.Object
   |
   +----Kurs

public class Kurs
extends Object

Constructor Index

 o Kurs()
 o Kurs(String, int)

Method Index

 o addTeilnehmer(String)
 o equals(Object)
 o getAnzahl()
 o getKursTitel()
 o getMaxAnzahl()
 o getTeilnehmer()
 o getTeilnehmer(int)
 o isKostenlos()
 o main(String[])
 o setKostenlos(boolean)
 o setKursTitel(String)
 o setTeilnehmer(int, String)
 o setTeilnehmer(String[])
 o toString()

Constructors

 o Kurs
 public Kurs()
 o Kurs
 public Kurs(String kursTitel,
             int maxAnzahl)

Methods

 o setKursTitel
 public void setKursTitel(String kursTitel)
 o getKursTitel
 public String getKursTitel()
 o setKostenlos
 public void setKostenlos(boolean kostenlos)
 o isKostenlos
 public boolean isKostenlos()
 o setTeilnehmer
 public void setTeilnehmer(String teilnehmer[])
 o getTeilnehmer
 public String[] getTeilnehmer()
 o setTeilnehmer
 public void setTeilnehmer(int i,
                           String name) throws ArrayIndexOutOfBoundsException
 o getTeilnehmer
 public String getTeilnehmer(int i) throws ArrayIndexOutOfBoundsException
 o addTeilnehmer
 public void addTeilnehmer(String name) throws ArrayIndexOutOfBoundsException
 o getAnzahl
 public int getAnzahl()
 o getMaxAnzahl
 public int getMaxAnzahl()
 o equals
 public boolean equals(Object other)
Overrides:
equals in class Object
 o toString
 public String toString()
Overrides:
toString in class Object
 o main
 public static void main(String args[])