jpower.irc.MultiClientHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JPower Show documentation
Show all versions of JPower Show documentation
Powerful Library for the JVM
package jpower.irc;
import java.util.List;
public class MultiClientHandler
{
private List networks;
public MultiClientHandler(List networks)
{
this.networks = networks;
}
public List getNetworks()
{
return networks;
}
public void connectAll()
{
for (Network n : networks)
{
n.connect();
}
}
}