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

prompto.value.IInstance Maven / Gradle / Ivy

package prompto.value;

import java.util.Set;

import prompto.declaration.CategoryDeclaration;
import prompto.grammar.Identifier;
import prompto.store.IStorable;
import prompto.type.CategoryType;


public interface IInstance extends IValue {

	CategoryType getType();
	Set getMemberIds();
	boolean setMutable(boolean set);
	CategoryDeclaration getDeclaration();
	IStorable getStorable();
	IInstance toMutable();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy