Examples of TeamCalCalendarFilter


Examples of org.projectforge.plugins.teamcal.integration.TeamCalCalendarFilter

      }
      final Object userPrefsObj = userXmlPreferencesDao.deserialize(userPrefs, true);
      if (userPrefsObj == null || userPrefsObj instanceof TeamCalCalendarFilter == false) {
        return;
      }
      final TeamCalCalendarFilter filter = (TeamCalCalendarFilter) userPrefsObj;
      final List<TemplateEntry> templates = filter.getTemplateEntries();
      if (templates == null) {
        // Nothing to do.
        return;
      }
      for (final TemplateEntry template : templates) {
View Full Code Here

Examples of org.projectforge.plugins.teamcal.integration.TeamCalCalendarFilter

   * @see org.projectforge.web.dialog.ModalDialog#open(org.apache.wicket.ajax.AjaxRequestTarget)
   */
  @Override
  public TeamCalFilterDialog open(final AjaxRequestTarget target)
  {
    backupFilter = new TeamCalCalendarFilter().copyValuesFrom(filter);
    super.open(target);
    return this;
  }
View Full Code Here

Examples of org.projectforge.plugins.teamcal.integration.TeamCalCalendarFilter

  /**
   * Opens the dialog for adding a new entry.
   */
  public TeamCalFilterDialog openNew(final AjaxRequestTarget target, final String newTemplateName)
  {
    backupFilter = new TeamCalCalendarFilter().copyValuesFrom(filter);
    final TemplateEntry newTemplate = new TemplateEntry();
    newTemplate.setName(newTemplateName);
    filter.add(newTemplate);
    super.open(target);
    return this;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.