Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 48c71656ecd9f69224d384fb80f7facb713d9afe (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
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation.
 * 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:
 *     IBM Corporation - Jeff Briggs, Henry Hughes, Ryan Morse
 *******************************************************************************/

package org.eclipse.linuxtools.systemtap.ui.consolelog.preferences;

public interface ConsoleLogPreferenceConstants {
    //ide
    String HOST_NAME = "host"; //$NON-NLS-1$
    String PORT_NUMBER = "port"; //$NON-NLS-1$
    String DB_COMMIT = "commit"; //$NON-NLS-1$
    String SAVE_LENGTH = "saveLength"; //$NON-NLS-1$
    String REMEMBER_SERVER = "rememberServer"; //$NON-NLS-1$
    String SCP_USER = "scpuser"; //$NON-NLS-1$
    String SCP_PASSWORD = "scppassword"; //$NON-NLS-1$
    String REMEMBER_SCPUSER = "rememberscpuser"; //$NON-NLS-1$
}

Back to the top