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

org.kevoree.modeling.KView Maven / Gradle / Ivy

There is a newer version: 4.27.0.2
Show newest version
package org.kevoree.modeling;

import org.kevoree.modeling.format.KModelFormat;
import org.kevoree.modeling.meta.KMetaClass;

public interface KView {

    KObject createByName(String metaClassName);

    KObject create(KMetaClass clazz);

    void select(String query, KCallback cb);

    void lookup(long key, KCallback cb);

    void lookupAll(long[] keys, KCallback cb);

    long universe();

    long now();

    KModel model();

    KModelFormat json();

    boolean equals(Object other);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy