5ac024837f398e7cdbf8e751425343f7a477736e
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / project / model / TmfTracesFolder.java
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
13 package org.eclipse.tracecompass.tmf.ui.project.model;
14
15 import org.eclipse.core.resources.IFolder;
16
17 /**
18 * Implementation of model element representing the unique "Traces" folder in
19 * the project.
20 */
21 public 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.048213 seconds and 4 git commands to generate.