Skip to content
Snippets Groups Projects
Commit b6b45718 authored by npedot's avatar npedot
Browse files

adds utility select add attributes from list of string

parent 5def9931
Branches
Tags
No related merge requests found
......@@ -12,4 +12,11 @@ class Select {
@JacksonXmlProperty(isAttribute = true)
var limit : String? = null
fun addAttributes(args: List<String>) {
for (arg in args) {
val att = Attribute()
att.name = arg
attributes.add(att)
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment