Skip to content

Package: Bot

Bot

Coverage

1: /**
2: * Copyright (c) 2011-2018 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * EclipseSource Munich - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.table.ui.nebula.grid.test.model.audit;
15:
16: /**
17: * <!-- begin-user-doc -->
18: * A representation of the model object '<em><b>Bot</b></em>'.
19: * <!-- end-user-doc -->
20: *
21: * <p>
22: * The following features are supported:
23: * </p>
24: * <ul>
25: * <li>{@link org.eclipse.emf.ecp.view.table.ui.nebula.grid.test.model.audit.Bot#getExecutionIntervalSeconds
26: * <em>Execution Interval Seconds</em>}</li>
27: * </ul>
28: *
29: * @see org.eclipse.emf.ecp.view.table.ui.nebula.grid.test.model.audit.AuditPackage#getBot()
30: * @model
31: * @generated
32: */
33: public interface Bot extends Member {
34:         /**
35:          * Returns the value of the '<em><b>Execution Interval Seconds</b></em>' attribute.
36:          * <!-- begin-user-doc -->
37:          * <p>
38:          * If the meaning of the '<em>Execution Interval Seconds</em>' attribute isn't clear,
39:          * there really should be more of a description here...
40:          * </p>
41:          * <!-- end-user-doc -->
42:          *
43:          * @return the value of the '<em>Execution Interval Seconds</em>' attribute.
44:          * @see #setExecutionIntervalSeconds(int)
45:          * @see org.eclipse.emf.ecp.view.table.ui.nebula.grid.test.model.audit.AuditPackage#getBot_ExecutionIntervalSeconds()
46:          * @model
47:          * @generated
48:          */
49:         int getExecutionIntervalSeconds();
50:
51:         /**
52:          * Sets the value of the
53:          * '{@link org.eclipse.emf.ecp.view.table.ui.nebula.grid.test.model.audit.Bot#getExecutionIntervalSeconds
54:          * <em>Execution Interval Seconds</em>}' attribute.
55:          * <!-- begin-user-doc -->
56:          * <!-- end-user-doc -->
57:          *
58:          * @param value the new value of the '<em>Execution Interval Seconds</em>' attribute.
59:          * @see #getExecutionIntervalSeconds()
60:          * @generated
61:          */
62:         void setExecutionIntervalSeconds(int value);
63:
64: } // Bot