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

org.eclipse.jface.text.source.projection.AnnotationBag Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jface.text.source.projection;

import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;

import org.eclipse.jface.text.source.Annotation;

/**
 * A bag of annotations.
 * 

* This class is not intended to be subclassed. *

* * @since 3.0 * @noextend This class is not intended to be subclassed by clients. */ public class AnnotationBag extends Annotation { private Set fAnnotations; /** * Creates a new annotation bag. * * @param type the annotation type */ public AnnotationBag(String type) { super(type, false, null); } /** * Adds the given annotation to the annotation bag. * * @param annotation the annotation to add */ public void add(Annotation annotation) { if (fAnnotations == null) fAnnotations= new HashSet(2); fAnnotations.add(annotation); } /** * Removes the given annotation from the annotation bag. * * @param annotation the annotation to remove */ public void remove(Annotation annotation) { if (fAnnotations != null) { fAnnotations.remove(annotation); if (fAnnotations.isEmpty()) fAnnotations= null; } } /** * Returns whether the annotation bag is empty. * * @return true if the annotation bag is empty, false otherwise */ public boolean isEmpty() { return fAnnotations == null; } /** * Returns an iterator for all annotation inside this * annotation bag or null if the bag is empty. * * @return an iterator for all annotations in the bag or null * @since 3.1 */ public Iterator iterator() { if (!isEmpty()) return fAnnotations.iterator(); return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy