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

ru.curs.celesta.score.ReadOnlyTable Maven / Gradle / Ivy

The newest version!
package ru.curs.celesta.score;

/**
 * Read Only Table object in metadata.
 *
 * @author Pavel Perminov ([email protected])
 * @since 2019-07-14
 */
public final class ReadOnlyTable extends BasicTable {

    public ReadOnlyTable(GrainPart gp, String name) throws ParseException {
        super(gp, name, true);
    }

    @Override
    public boolean hasPrimeKey() {
        return !this.pk.getElements().isEmpty();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy