lttng: Add a diagram showing the dependencies between plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / handlers / DomainCommandParameter.java
CommitLineData
c56972bb 1/**********************************************************************
11252342
AM
2 * Copyright (c) 2012, 2013 Ericsson
3 *
c56972bb
BH
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
11252342
AM
8 *
9 * Contributors:
c56972bb
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12package org.eclipse.linuxtools.internal.lttng2.ui.views.control.handlers;
13
14import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceDomainComponent;
15import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceSessionComponent;
16
17/**
dbd4432d 18 * Class containing parameter for the command execution.
11252342 19 *
dbd4432d 20 * @author Bernd Hufmann
c56972bb
BH
21 */
22public class DomainCommandParameter extends CommandParameter {
23
24 // ------------------------------------------------------------------------
25 // Attributes
26 // ------------------------------------------------------------------------
27
28 private TraceDomainComponent fDomain;
29
30
31 // ------------------------------------------------------------------------
32 // Constructors
33 // ------------------------------------------------------------------------
34
35 /**
36 * Constructor
37 * @param session - a trace session component.
38 * @param domain - a trace domain component
39 */
40 public DomainCommandParameter(TraceSessionComponent session, TraceDomainComponent domain) {
41 super(session);
42 fDomain = domain;
43 }
44
45 // ------------------------------------------------------------------------
46 // Accessors
47 // ------------------------------------------------------------------------
48
49 /**
50 * @return the trace domain component
51 */
52 public TraceDomainComponent getDomain() {
53 return fDomain;
54 }
11252342 55
c56972bb
BH
56 // ------------------------------------------------------------------------
57 // Operations
58 // ------------------------------------------------------------------------
59
c56972bb
BH
60 @Override
61 public DomainCommandParameter clone() {
62 DomainCommandParameter clone = (DomainCommandParameter) super.clone();
63 clone.fDomain = fDomain;
64 return clone;
65 }
66}
This page took 0.04124 seconds and 5 git commands to generate.