Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package net.n2oapp.framework.config.metadata.pack;
import net.n2oapp.framework.api.pack.MetadataPack;
import net.n2oapp.framework.config.N2oApplicationBuilder;
import net.n2oapp.framework.config.metadata.compile.control.*;
import net.n2oapp.framework.config.metadata.compile.control.filters_buttons.ClearButtonCompiler;
import net.n2oapp.framework.config.metadata.compile.control.filters_buttons.SearchButtonCompiler;
import net.n2oapp.framework.config.metadata.compile.control.filters_buttons.SearchButtonsCompiler;
public class N2oControlsPack implements MetadataPack {
@Override
public void build(N2oApplicationBuilder b) {
b.packs(new N2oControlsV2IOPack(), new N2oControlsV3IOPack());
b.compilers(new InputTextCompiler(),
new InputMoneyCompiler(),
new DatePickerCompiler(),
new DateIntervalCompiler(),
new PasswordCompiler(),
new SelectCompiler(),
new InputSelectCompiler(),
new InputSelectTreeCompiler(),
new CheckboxCompiler(),
new CheckboxGroupCompiler(),
new TextEditorCompiler(),
new CodeEditorCompiler(),
new CodeViewerCompiler(),
new MaskedInputCompiler(),
new HtmlCompiler(),
new TextAreaCompiler(),
new RadioGroupCompiler(),
new OutputTextCompiler(),
new OutputListCompiler(),
new HiddenCompiler(),
new FileUploadCompiler(),
new ImageUploadCompiler(),
new CustomFieldCompiler(),
new SearchButtonsCompiler(),
new SearchButtonCompiler(),
new ClearButtonCompiler(),
new CustomControlCompiler(),
new TextCompiler(),
new SliderCompiler(),
new RatingCompiler(),
new AlertFieldCompiler(),
new ButtonFieldCompiler(),
new AutoCompleteCompiler(),
new ProgressCompiler(),
new StatusFieldCompiler(),
new IntervalFieldCompiler<>(),
new ImageFieldCompiler(),
new NumberPickerCompiler(),
new TimePickerCompiler(),
new MarkdownCompiler()
);
b.binders(new ListControlBinder());
}
}