Skip to content

Future Consideration

setq edited this page Jun 12, 2015 · 7 revisions

This is a list of ideas that have yet to be implemented.

Backend

Support for Packages

Currently, you can create scala file for an Object in Zeidon, but you cannot create a custom location or package, the scala file must be located in x.y.z However, I would like to be able to instruct Zeidon where to find the scala class from another package.

Misc

Select Sets

Functionality to create select sets from Scala on the fly. Something like:

val set = view.Entity.select{ _.AttribValue == "True" }
set.each { println( _.ID } 
someView.buildQual( _.Root.ID in set )

Entity To List

val el = view.entity.toList{_.AttrValue } view2.activateWhere(_.Entity.ID in (el)) name "view2"

Scala

Activation

Databases