org.archguard.scanner.analyser.xml.BasedXmlHandler.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feat_datamap Show documentation
Show all versions of feat_datamap Show documentation
ArchGuard is a architecture governance tool which can analysis architecture in container, component, code level, create architecture fitness functions, and anaysis system dependencies..
package org.archguard.scanner.analyser.xml
import org.xml.sax.helpers.DefaultHandler
open class BasedXmlHandler: DefaultHandler() {
open fun name(): String {
return ""
}
open fun detect(name: String?, publicId: String?, systemId: String?): Boolean {
return false
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy