Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 46473ea2e540ebdd785679ccc9e6dcd061bcc5ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * Copyright (c) 2012 Wind River Systems, Inc. and others. All rights reserved.
 * This program and the accompanying materials are made available under the terms
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is
 * available at http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.ui.terminals.serial.interfaces;

/**
 * The properties specific to the wire type "serial".
 */
public interface IWireTypeSerial {

	/**
	 * The data container.
	 */
	public static String PROPERTY_CONTAINER_NAME = "serial"; //$NON-NLS-1$

	/**
	 * The serial device name.
	 */
	public static final String PROPERTY_SERIAL_DEVICE = "device"; //$NON-NLS-1$

	/**
	 * The baud rate.
	 */
	public static final String PROPERTY_SERIAL_BAUD_RATE = "baudrate"; //$NON-NLS-1$

	/**
	 * The data bits
	 */
	public static final String PROPERTY_SERIAL_DATA_BITS = "databits"; //$NON-NLS-1$

	/**
	 * The parity
	 */
	public static final String PROPERTY_SERIAL_PARITY = "parity"; //$NON-NLS-1$

	/**
	 * The stop bits
	 */
	public static final String PROPERTY_SERIAL_STOP_BITS = "stopbits"; //$NON-NLS-1$

	/**
	 * The flow control
	 */
	public static final String PROPERTY_SERIAL_FLOW_CONTROL = "flowcontrol"; //$NON-NLS-1$
}

Back to the top