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

prompto.runtime.WidgetField Maven / Gradle / Ivy

package prompto.runtime;

import prompto.grammar.Identifier;
import prompto.type.IType;

public class WidgetField extends Variable {

	Object createdBy;
	Object updatedBy;
	
	public WidgetField(Identifier name, IType type, Object createdBy) {
		super(name, type);
		this.createdBy = createdBy;
		this.updatedBy = null;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy