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

org.bedework.calfacade.base.OverrideSet Maven / Gradle / Ivy

The newest version!
/* ********************************************************************
    Licensed to Jasig under one or more contributor license
    agreements. See the NOTICE file distributed with this work
    for additional information regarding copyright ownership.
    Jasig licenses this file to you under the Apache License,
    Version 2.0 (the "License"); you may not use this file
    except in compliance with the License. You may obtain a
    copy of the License at:

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on
    an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied. See the License for the
    specific language governing permissions and limitations
    under the License.
*/
package org.bedework.calfacade.base;

import org.bedework.calfacade.BwEvent;
import org.bedework.calfacade.BwEventAnnotation;

import java.util.Set;
import java.util.TreeSet;

/** An override collection which is a Set of T.
 *
 * @author Mike Douglass douglm - bedework.edu
 * @param 
 */
public abstract class OverrideSet  extends OverrideCollection >
      implements Set {
  /**
   * @param fieldIndex
   * @param ann
   * @param cf
   */
  public OverrideSet(BwEvent.ProxiedFieldIndex fieldIndex,
                     BwEventAnnotation ann,
                     ChangeFlag cf) {
    super(fieldIndex, ann, cf);
  }

  /* (non-Javadoc)
   * @see org.bedework.calfacade.base.OverrideCollection#getEmptyOverrideCollection()
   */
  public Set getEmptyOverrideCollection() {
    return new TreeSet();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy