Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / project / model / TmfTracesFolder.java
CommitLineData
339d539c
PT
1/*******************************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Patrick Tasse - Initial API and implementation
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.ui.project.model;
339d539c
PT
14
15import org.eclipse.core.resources.IFolder;
16
17/**
18 * Implementation of model element representing the unique "Traces" folder in
19 * the project.
339d539c
PT
20 */
21public class TmfTracesFolder extends TmfTraceFolder {
22
23 // ------------------------------------------------------------------------
24 // Constants
25 // ------------------------------------------------------------------------
26
27 /**
28 * The name of the traces folder
29 */
30 public static final String TRACES_FOLDER_NAME = "Traces"; //$NON-NLS-1$
31
32 // ------------------------------------------------------------------------
33 // Constructor
34 // ------------------------------------------------------------------------
35
36 /**
37 * Constructor.
38 * Creates folder model element under the project.
39 * @param name The name of trace folder.
40 * @param resource The folder resource.
41 * @param parent The parent element (project).
42 */
43 public TmfTracesFolder(String name, IFolder resource, TmfProjectElement parent) {
44 super(name, resource, parent);
45 }
46
47}
This page took 0.048734 seconds and 5 git commands to generate.