tmf: Add missing @since annotations in Utils.TimeFormat
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / model / TmfExperimentElement.java
CommitLineData
12c155f5 1/*******************************************************************************
b544077e 2 * Copyright (c) 2010, 2012 Ericsson
c4c81d91 3 *
12c155f5
FC
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
c4c81d91 8 *
12c155f5
FC
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.ui.project.model;
14
c4c81d91
PT
15import java.io.ByteArrayInputStream;
16import java.io.InputStream;
12c155f5 17import java.util.ArrayList;
5a5c2fc7 18import java.util.Arrays;
12c155f5
FC
19import java.util.List;
20
c4c81d91 21import org.eclipse.core.resources.IFile;
12c155f5 22import org.eclipse.core.resources.IFolder;
c4c81d91
PT
23import org.eclipse.core.resources.IResource;
24import org.eclipse.core.runtime.CoreException;
25import org.eclipse.linuxtools.tmf.core.TmfCommonConstants;
26import org.eclipse.linuxtools.tmf.core.trace.TmfExperiment;
12c155f5
FC
27import org.eclipse.ui.views.properties.IPropertyDescriptor;
28import org.eclipse.ui.views.properties.IPropertySource2;
29import org.eclipse.ui.views.properties.TextPropertyDescriptor;
30
31/**
b544077e 32 * Implementation of TMF Experiment Model Element.
12c155f5 33 * <p>
b544077e
BH
34 * @version 1.0
35 * @author Francois Chouinard
c4c81d91 36 *
12c155f5
FC
37 */
38public class TmfExperimentElement extends TmfProjectModelElement implements IPropertySource2 {
39
40 // ------------------------------------------------------------------------
41 // Constants
42 // ------------------------------------------------------------------------
43
44 // Property View stuff
45 private static final String sfInfoCategory = "Info"; //$NON-NLS-1$
46 private static final String sfName = "name"; //$NON-NLS-1$
47 private static final String sfPath = "path"; //$NON-NLS-1$
48 private static final String sfLocation = "location"; //$NON-NLS-1$
49
50 private static final TextPropertyDescriptor sfNameDescriptor = new TextPropertyDescriptor(sfName, sfName);
51 private static final TextPropertyDescriptor sfPathDescriptor = new TextPropertyDescriptor(sfPath, sfPath);
52 private static final TextPropertyDescriptor sfLocationDescriptor = new TextPropertyDescriptor(sfLocation,
53 sfLocation);
54
55 private static final IPropertyDescriptor[] sfDescriptors = { sfNameDescriptor, sfPathDescriptor,
56 sfLocationDescriptor };
57
58 static {
59 sfNameDescriptor.setCategory(sfInfoCategory);
60 sfPathDescriptor.setCategory(sfInfoCategory);
61 sfLocationDescriptor.setCategory(sfInfoCategory);
62 }
63
c4c81d91
PT
64 private static final String BOOKMARKS_HIDDEN_FILE = ".bookmarks"; //$NON-NLS-1$
65
12c155f5
FC
66 // ------------------------------------------------------------------------
67 // Constructors
68 // ------------------------------------------------------------------------
b544077e 69 /**
c4c81d91 70 * Constructor
b544077e
BH
71 * @param name The name of the experiment
72 * @param folder The folder reference
73 * @param parent The experiment folder reference.
74 */
12c155f5
FC
75 public TmfExperimentElement(String name, IFolder folder, TmfExperimentFolder parent) {
76 super(name, folder, parent);
77 parent.addChild(this);
78 }
79
80 // ------------------------------------------------------------------------
81 // TmfProjectModelElement
82 // ------------------------------------------------------------------------
83
b544077e
BH
84 /*
85 * (non-Javadoc)
86 * @see org.eclipse.linuxtools.tmf.ui.project.model.TmfProjectModelElement#getResource()
87 */
12c155f5
FC
88 @Override
89 public IFolder getResource() {
90 return (IFolder) fResource;
91 }
92
b544077e
BH
93 /*
94 * (non-Javadoc)
95 * @see org.eclipse.linuxtools.tmf.ui.project.model.ITmfProjectModelElement#getProject()
96 */
12c155f5
FC
97 @Override
98 public TmfProjectElement getProject() {
99 return (TmfProjectElement) getParent().getParent();
100 }
101
102 // ------------------------------------------------------------------------
103 // Operations
104 // ------------------------------------------------------------------------
b544077e
BH
105 /**
106 * Returns a list of TmfTraceElements contained in this experiment.
107 * @return a list of TmfTraceElements
108 */
12c155f5
FC
109 public List<TmfTraceElement> getTraces() {
110 List<ITmfProjectModelElement> children = getChildren();
111 List<TmfTraceElement> traces = new ArrayList<TmfTraceElement>();
112 for (ITmfProjectModelElement child : children) {
113 if (child instanceof TmfTraceElement) {
114 traces.add((TmfTraceElement) child);
115 }
116 }
117 return traces;
118 }
119
c4c81d91
PT
120 /**
121 * Returns the file resource used to store bookmarks.
122 * The linked file will be created if it doesn't exist.
123 * @return the bookmarks file
124 * @throws CoreException if the bookmarks file cannot be created
125 * @since 2.0
126 */
127 public IFile getBookmarksFile() throws CoreException {
128 IFile file = null;
129 final IFile bookmarksFile = getProject().getExperimentsFolder().getResource().getFile(BOOKMARKS_HIDDEN_FILE);
130 if (!bookmarksFile.exists()) {
131 final InputStream source = new ByteArrayInputStream(new byte[0]);
132 bookmarksFile.create(source, true, null);
133 }
134 bookmarksFile.setHidden(true);
135
136 final IFolder folder = (IFolder) fResource;
137 file = folder.getFile(getName() + '_');
138 if (!file.exists()) {
139 file.createLink(bookmarksFile.getLocation(), IResource.REPLACE, null);
140 }
141 file.setHidden(true);
142 file.setPersistentProperty(TmfCommonConstants.TRACETYPE, TmfExperiment.class.getCanonicalName());
143 return file;
144 }
145
12c155f5
FC
146 // ------------------------------------------------------------------------
147 // IPropertySource2
148 // ------------------------------------------------------------------------
149
b544077e
BH
150 /*
151 * (non-Javadoc)
152 * @see org.eclipse.ui.views.properties.IPropertySource#getEditableValue()
153 */
12c155f5
FC
154 @Override
155 public Object getEditableValue() {
156 return null;
157 }
158
b544077e
BH
159 /*
160 * (non-Javadoc)
161 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyDescriptors()
162 */
12c155f5
FC
163 @Override
164 public IPropertyDescriptor[] getPropertyDescriptors() {
5a5c2fc7 165 return (sfDescriptors != null) ? Arrays.copyOf(sfDescriptors, sfDescriptors.length) : null;
12c155f5
FC
166 }
167
b544077e
BH
168 /*
169 * (non-Javadoc)
170 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
171 */
12c155f5
FC
172 @Override
173 public Object getPropertyValue(Object id) {
174
c4c81d91 175 if (sfName.equals(id)) {
12c155f5 176 return getName();
c4c81d91 177 }
12c155f5 178
c4c81d91 179 if (sfPath.equals(id)) {
12c155f5 180 return getPath().toString();
c4c81d91 181 }
12c155f5 182
c4c81d91 183 if (sfLocation.equals(id)) {
12c155f5 184 return getLocation().toString();
c4c81d91 185 }
12c155f5
FC
186
187 return null;
188 }
c4c81d91 189
b544077e
BH
190 /*
191 * (non-Javadoc)
192 * @see org.eclipse.ui.views.properties.IPropertySource#resetPropertyValue(java.lang.Object)
193 */
12c155f5
FC
194 @Override
195 public void resetPropertyValue(Object id) {
196 }
197
b544077e
BH
198 /*
199 * (non-Javadoc)
200 * @see org.eclipse.ui.views.properties.IPropertySource#setPropertyValue(java.lang.Object, java.lang.Object)
201 */
12c155f5
FC
202 @Override
203 public void setPropertyValue(Object id, Object value) {
204 }
205
b544077e
BH
206 /*
207 * (non-Javadoc)
208 * @see org.eclipse.ui.views.properties.IPropertySource2#isPropertyResettable(java.lang.Object)
209 */
12c155f5
FC
210 @Override
211 public boolean isPropertyResettable(Object id) {
212 return false;
213 }
214
b544077e
BH
215 /*
216 * (non-Javadoc)
217 * @see org.eclipse.ui.views.properties.IPropertySource2#isPropertySet(java.lang.Object)
218 */
12c155f5
FC
219 @Override
220 public boolean isPropertySet(Object id) {
221 return false;
222 }
223
224}
This page took 0.042136 seconds and 5 git commands to generate.