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

main.model.MMethod.kt Maven / Gradle / Ivy

There is a newer version: 0.76.0
Show newest version
package de.peekandpoke.ultra.meta.model

import javax.lang.model.element.ExecutableElement
import javax.lang.model.element.Modifier

class MMethod(
    model: Model,
    executableElement: ExecutableElement
) : MBase(model) {

    val simpleName: String = executableElement.simpleName.toString()

    val isPublic = executableElement.modifiers.contains(Modifier.PUBLIC)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy