Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
public TableContent callInstanceTable(Vector element)
{
final Vector vectorsend = element;
//Runnable for thread---------------------------------------------------------------------
Runnable fillingInstanceTable = new Runnable()
{
public void run() {
showing.setVisible(true);
haveSet = false;
try{
tableobject.setContent(receiver.getInstanceTable(vectorsend.elements()));
}
catch(Exception e)
{JOptionPane.showMessageDialog(null, e.toString(), "Fehler", JOptionPane.ERROR_MESSAGE);}
haveSet = true;
showing.setVisible(false);
showing.dispose(); //eliminating the statuswindow
}
};
//Runnable end----------------------------------------------------------------------------
try{
SwingUtilities.invokeLater(fillingInstanceTable);
}
catch(Exception e)
{}
return tableobject.getContent();
}
public void callInstanceTable(Vector element)
{
final Vector vectorsend = element;
//Runnable for thread---------------------------------------------------------------------
Runnable fillingInstanceTable = new Runnable()
{
public void run() {
showing.setVisible(true);
haveSet = false;
try{
tableobject.setContent(receiver.getInstanceTable(vectorsend.elements()));
}
catch(Exception e)
{JOptionPane.showMessageDialog(null, e.toString(), "Fehler", JOptionPane.ERROR_MESSAGE);}
haveSet = true;
showing.setVisible(false);
showing.dispose(); //eliminating the statuswindow
showTable(tableobject.getContent());
}
};
//Runnable end----------------------------------------------------------------------------
try{
SwingUtilities.invokeLater(fillingInstanceTable);
}
catch(Exception e)
{}
}