blob: c472e2e6f83a0d72083be1401f56e3edc9675857 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2019 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.tracecompass.internal.provisional.tmf.core.model.annotations;
import java.util.List;
/**
* Data provider annotation categories model
*/
public class AnnotationCategoriesModel {
private final List<String> fAnnotationCategories;
/**
* Constructor
*
* @param annotationCategories
* List of categories
*/
public AnnotationCategoriesModel(List<String> annotationCategories) {
fAnnotationCategories = annotationCategories;
}
/**
* Annotation categories for the model
*
* @return List of categories
*/
public List<String> getAnnotationCategories() {
return fAnnotationCategories;
}
}