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

net.jkcode.jkmvc.elements.ElementCollection.kt Maven / Gradle / Ivy

package net.jkcode.jkmvc.elements

import net.jkcode.jkmvc.common.get

/**
 * 元素集合
 * @author shijianhang<[email protected]>
 * @date 2019-07-21 10:58 AM
 */
class ElementCollection(protected val col: Collection): IElements {

    public override fun size(): Int {
        return col.size
    }

    public override fun getElement(index: Int): E {
        return col[index]
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy