Example #1
0
 public boolean hasIOManager(XOMVariant obj) {
   for (XNIOManager io : ioManagers) {
     if (io.worksWith(this, obj)) return true;
   }
   return false;
 }
Example #2
0
 public XNIOManager getIOManager(XOMVariant obj) {
   for (XNIOManager io : ioManagers) {
     if (io.worksWith(this, obj)) return io;
   }
   return null;
 }