Home | History | Annotate | Download | only in smackx

Lines Matching defs:class

29 public class InitStaticCode {
32 // This has the be the application class loader,
33 // *not* the system class loader
37 Class.forName(org.jivesoftware.smackx.ServiceDiscoveryManager.class.getName(), true, appClassLoader);
38 Class.forName(org.jivesoftware.smack.PrivacyListManager.class.getName(), true, appClassLoader);
39 Class.forName(org.jivesoftware.smackx.XHTMLManager.class.getName(), true, appClassLoader);
40 Class.forName(org.jivesoftware.smackx.muc.MultiUserChat.class.getName(), true, appClassLoader);
41 Class.forName(org.jivesoftware.smackx.bytestreams.ibb.InBandBytestreamManager.class.getName(), true, appClassLoader);
42 Class.forName(org.jivesoftware.smackx.bytestreams.socks5.Socks5BytestreamManager.class.getName(), true, appClassLoader);
43 Class.forName(org.jivesoftware.smackx.filetransfer.FileTransferManager.class.getName(), true, appClassLoader);
44 Class.forName(org.jivesoftware.smackx.LastActivityManager.class.getName(), true, appClassLoader);
45 Class.forName(org.jivesoftware.smack.ReconnectionManager.class.getName(), true, appClassLoader);
46 Class.forName(org.jivesoftware.smackx.commands.AdHocCommandManager.class.getName(), true, appClassLoader);
48 throw new IllegalStateException("Could not init static class blocks", e);