All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.didiglobal.booster.task.analyser.performance.LayoutHandler.kt Maven / Gradle / Ivy

package com.didiglobal.booster.task.analyser.performance

import org.xml.sax.Attributes
import org.xml.sax.helpers.DefaultHandler

/**
 * @author johnsonlee
 */
class LayoutHandler : DefaultHandler() {

    val views = mutableSetOf()

    override fun startElement(uri: String, localName: String, qName: String, attributes: Attributes) {
        views += qName
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy