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