]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db/src/org/simantics/db/MonitorContext.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / MonitorContext.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.db;\r
13 \r
14 import org.simantics.db.service.SessionMonitorSupport;\r
15 \r
16 /**\r
17  * A context used for accessing {@link Session} internal state information.\r
18  * The context is attained through {@link SessionMonitorSupport}.\r
19  * \r
20  * @see SessionMonitorSupport\r
21  * @see SessionVariables\r
22  */\r
23 public interface MonitorContext {\r
24 \r
25     /**\r
26      * Get value for specified integer variable.\r
27      * \r
28      * @param key the variable\r
29      * @return value or -1 for unrecognized variables\r
30      */\r
31     int getInteger(String key);\r
32 \r
33     /**\r
34      * Get value for specified integer variable.\r
35      * \r
36      * @param key the variable\r
37      * @return value or <code>null</code> for unrecognized variables\r
38      */\r
39     String getString(String key);\r
40 \r
41 }\r