tmf: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / 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 * @since 3.0
22 */
23 public class TmfTracesFolder extends TmfTraceFolder {
24
25 // ------------------------------------------------------------------------
26 // Constants
27 // ------------------------------------------------------------------------
28
29 /**
30 * The name of the traces folder
31 */
32 public static final String TRACES_FOLDER_NAME = "Traces"; //$NON-NLS-1$
33
34 // ------------------------------------------------------------------------
35 // Constructor
36 // ------------------------------------------------------------------------
37
38 /**
39 * Constructor.
40 * Creates folder model element under the project.
41 * @param name The name of trace folder.
42 * @param resource The folder resource.
43 * @param parent The parent element (project).
44 */
45 public TmfTracesFolder(String name, IFolder resource, TmfProjectElement parent) {
46 super(name, resource, parent);
47 }
48
49 }
This page took 0.033304 seconds and 5 git commands to generate.