|
What this is
Other links
The source code/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.spi.debugger.ui;
/**
* Contains various debuggercore-ui constants.
*
* @author Jan Jancura
*/
public interface Constants {
/**
* Thread State column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String THREAD_STATE_COLUMN_ID = "ThreadState";
/**
* Thread Suspended column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String THREAD_SUSPENDED_COLUMN_ID = "ThreadSuspended";
/**
* Breakpoint Enabled column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String BREAKPOINT_ENABLED_COLUMN_ID =
"BreakpointEnabled";
/**
* CallStackFrame Location column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String CALL_STACK_FRAME_LOCATION_COLUMN_ID =
"CallStackFrameLocation";
/**
* Locals toString () column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String LOCALS_TO_STRING_COLUMN_ID = "LocalsToString";
/**
* Locals Tyoe column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String LOCALS_TYPE_COLUMN_ID = "LocalsType";
/**
* Locals Value column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String LOCALS_VALUE_COLUMN_ID = "LocalsValue";
/**
* Watch toString () column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getID
*/
public static final String WATCH_TO_STRING_COLUMN_ID = "WatchToString";
/**
* Watch Tyoe column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String WATCH_TYPE_COLUMN_ID = "WatchType";
/**
* Watch Value column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String WATCH_VALUE_COLUMN_ID = "WatchValue";
/**
* Session Host Name column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String SESSION_HOST_NAME_COLUMN_ID = "SessionHostName";
/**
* Session State column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String SESSION_STATE_COLUMN_ID = "SessionState";
/**
* Session Language column id.
*
* @see org.netbeans.spi.treeview.ColumnModel#getID
* @see org.netbeans.spi.treeview.ColumnModel#getPreviuosColumnID
* @see org.netbeans.spi.treeview.ColumnModel#getNextColumnID
*/
public static final String SESSION_LANGUAGE_COLUMN_ID = "SessionLanguage";
}
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.