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

org.yamcs.yarch.Table Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.yarch;


public abstract class Table {
    final protected TableDefinition tableDefinition;
    
    public Table(TableDefinition tblDef) {
        this.tableDefinition = tblDef;
    }
    

    public TableDefinition getDefinition() {
        return tableDefinition;
    }


    public String getName() {
        return tableDefinition.getName();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy