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

org.dbtools.codegen.kotlin.KotlinInterface.kt Maven / Gradle / Ivy

There is a newer version: 11.0.0
Show newest version
/*
 * KotlinInterface.kt
 *
 * Created on Nov 7, 2015
 *
 * Copyright 2007 Jeff Campbell. All rights reserved. Unauthorized reproduction
 * is a violation of applicable law. This material contains certain
 * confidential or proprietary information and trade secrets of Jeff Campbell.
 */

package org.dbtools.codegen.kotlin

class KotlinInterface : KotlinClass {

    constructor(name: String) : super(name, classType = KotlinClassType.INTERFACE) {
    }

    constructor(name: String, packageName: String) : super(name, packageName, KotlinClassType.INTERFACE) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy