Search in sources :

Example 36 with Function1

use of org.eclipse.xtext.xbase.lib.Functions.Function1 in project applause by applause.

the class DefaultDetailsScreenModuleFileCompiler method defaultCell.

public ScreenListItemCell defaultCell(final Screen it) {
    EList<ScreenSection> _sections = it.getSections();
    final Function1<ScreenSection, ScreenSectionItems> _function = new Function1<ScreenSection, ScreenSectionItems>() {

        public ScreenSectionItems apply(final ScreenSection it) {
            ScreenSectionItems _items = it.getItems();
            return _items;
        }
    };
    List<ScreenSectionItems> _map = ListExtensions.<ScreenSection, ScreenSectionItems>map(_sections, _function);
    final Function1<ScreenSectionItems, EList<ScreenListItemCell>> _function_1 = new Function1<ScreenSectionItems, EList<ScreenListItemCell>>() {

        public EList<ScreenListItemCell> apply(final ScreenSectionItems it) {
            EList<ScreenListItemCell> _items = it.getItems();
            return _items;
        }
    };
    List<EList<ScreenListItemCell>> _map_1 = ListExtensions.<ScreenSectionItems, EList<ScreenListItemCell>>map(_map, _function_1);
    Iterable<ScreenListItemCell> _flatten = Iterables.<ScreenListItemCell>concat(_map_1);
    ScreenListItemCell _head = IterableExtensions.<ScreenListItemCell>head(_flatten);
    return _head;
}
Also used : ScreenSection(org.applause.lang.applauseDsl.ScreenSection) ScreenListItemCell(org.applause.lang.applauseDsl.ScreenListItemCell) EList(org.eclipse.emf.common.util.EList) Function1(org.eclipse.xtext.xbase.lib.Functions.Function1) ScreenSectionItems(org.applause.lang.applauseDsl.ScreenSectionItems)

Example 37 with Function1

use of org.eclipse.xtext.xbase.lib.Functions.Function1 in project applause by applause.

the class EntityDataAccessExtensions method parameterList.

public String parameterList(final DataSourceAccessMethod it) {
    EList<Parameter> _declaredParameters = it.getDeclaredParameters();
    final Function1<Parameter, String> _function = new Function1<Parameter, String>() {

        public String apply(final Parameter param) {
            Type _type = param.getType();
            String _typeName = EntityDataAccessExtensions.this._typeExtensions.typeName(_type);
            String _plus = (_typeName + " *");
            Type _type_1 = param.getType();
            String _parameterName = EntityDataAccessExtensions.this.parameterName(_type_1);
            String _plus_1 = (_plus + _parameterName);
            return _plus_1;
        }
    };
    List<String> _map = ListExtensions.<Parameter, String>map(_declaredParameters, _function);
    String _join = IterableExtensions.join(_map, ", ");
    return _join;
}
Also used : Type(org.applause.lang.applauseDsl.Type) Function1(org.eclipse.xtext.xbase.lib.Functions.Function1) Parameter(org.applause.lang.applauseDsl.Parameter)

Aggregations

Function1 (org.eclipse.xtext.xbase.lib.Functions.Function1)37 StringConcatenation (org.eclipse.xtend2.lib.StringConcatenation)17 ColumnSource (com.robotoworks.mechanoid.db.sqliteModel.ColumnSource)13 EList (org.eclipse.emf.common.util.EList)11 ScreenListItemCell (org.applause.lang.applauseDsl.ScreenListItemCell)8 ColumnType (com.robotoworks.mechanoid.db.sqliteModel.ColumnType)7 CreateViewStatement (com.robotoworks.mechanoid.db.sqliteModel.CreateViewStatement)5 DatabaseBlock (com.robotoworks.mechanoid.db.sqliteModel.DatabaseBlock)5 ArrayList (java.util.ArrayList)5 ScreenSection (org.applause.lang.applauseDsl.ScreenSection)5 ScreenSectionItems (org.applause.lang.applauseDsl.ScreenSectionItems)5 ActionStatement (com.robotoworks.mechanoid.db.sqliteModel.ActionStatement)4 ResultColumn (com.robotoworks.mechanoid.db.sqliteModel.ResultColumn)4 UIComponentMemberConfiguration (org.applause.lang.applauseDsl.UIComponentMemberConfiguration)4 ColumnDef (com.robotoworks.mechanoid.db.sqliteModel.ColumnDef)3 ConfigBlock (com.robotoworks.mechanoid.db.sqliteModel.ConfigBlock)3 ConfigurationStatement (com.robotoworks.mechanoid.db.sqliteModel.ConfigurationStatement)3 ContentUri (com.robotoworks.mechanoid.db.sqliteModel.ContentUri)3 CreateTableStatement (com.robotoworks.mechanoid.db.sqliteModel.CreateTableStatement)3 TableDefinition (com.robotoworks.mechanoid.db.sqliteModel.TableDefinition)3