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

edu.byu.hbll.box.StartGroupDocument Maven / Gradle / Ivy

There is a newer version: 2.5.3
Show newest version
package edu.byu.hbll.box;

/**
 * Special {@link BoxDocument} that signals the start of a group for identifying orphans. The id of
 * the document is the group name.
 *
 * @author Charles Draper
 */
public class StartGroupDocument extends BoxDocument {

  /**
   * Creates a new {@link StartGroupDocument}.
   *
   * @param groupId name or id of the group
   */
  public StartGroupDocument(String groupId) {
    super(groupId);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy