Class JavaAgent.context.ContextParams
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class JavaAgent.context.ContextParams

java.lang.Object
   |
   +----JavaAgent.context.ContextParams

public class ContextParams
extends Object
Static class which defines constant parameters for classes in the JavaAgent.context package. Some of these parameters serve as default values which may be optionally overridden using commandline/applet parameters.

Parameters which need to be bound during compilation (i.e. inlined into the byte code) (e.g. booleans which control conditionally compiled code blocks) need to be declared static final, those which need to be dynamically bound must be declared with only the static modifier. Most params will fall in the later category. Note: compilation binding requires the recompilation of all affected classes.


Copyright (c) 1995, H. Robert Frost, Stanford University. All rights reserved.

Copyright (c) 1996, H. Robert Frost, Enterprise Integration Technologies, Inc. All rights reserved.

RESTRICTED RIGHTS LEGEND: Use, duplication or disclosure by the Government is subject to restrictions as set forth in subparagraph(c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 and in similar clauses in the FAR and NASA FAR supplement.

This software is bound by the terms and conditions listed in the attached LICENSE file.



Variable Index

 o AF_HEIGHT
 o AF_WIDTH
Window sizes
 o COMP_MESS_HT
 o COMP_MESS_WD
 o DEBUG
Should detailed systems messages be printed?
 o LOAD_MESS_HT
 o LOAD_MESS_WD
 o LOAD_RES_HT
 o LOAD_RES_WD
 o LOG_FILE
Should system messages be written to a log file.
 o PORT
Default port for ServerSocket creation, 0 indicates that the port should be automatically selected.
 o SMP_HEIGHT
 o SMP_WIDTH
 o STACK_TRACE
Should exception stack traces be printed?
 o TEST
If true, all conditionally enclosed code blocks will be compiled and executed during interpretation.
 o VIEW_MESS_HT
 o VIEW_MESS_WD
 o VIEW_RES_HT
 o VIEW_RES_WD

Constructor Index

 o ContextParams()

Variables

 o TEST
  public final static boolean TEST
If true, all conditionally enclosed code blocks will be compiled and executed during interpretation. If false, these blocks will be ignored by the compiler. All effected classes must be recompiled for this change to take place.
 o DEBUG
  public static boolean DEBUG
Should detailed systems messages be printed?
 o STACK_TRACE
  public static boolean STACK_TRACE
Should exception stack traces be printed?
 o LOG_FILE
  public static boolean LOG_FILE
Should system messages be written to a log file.
 o PORT
  public static int PORT
Default port for ServerSocket creation, 0 indicates that the port should be automatically selected.
 o AF_WIDTH
  public static int AF_WIDTH
Window sizes
 o AF_HEIGHT
  public static int AF_HEIGHT
 o COMP_MESS_WD
  public static int COMP_MESS_WD
 o COMP_MESS_HT
  public static int COMP_MESS_HT
 o VIEW_MESS_WD
  public static int VIEW_MESS_WD
 o VIEW_MESS_HT
  public static int VIEW_MESS_HT
 o LOAD_MESS_WD
  public static int LOAD_MESS_WD
 o LOAD_MESS_HT
  public static int LOAD_MESS_HT
 o VIEW_RES_WD
  public static int VIEW_RES_WD
 o VIEW_RES_HT
  public static int VIEW_RES_HT
 o LOAD_RES_WD
  public static int LOAD_RES_WD
 o LOAD_RES_HT
  public static int LOAD_RES_HT
 o SMP_WIDTH
  public static int SMP_WIDTH
 o SMP_HEIGHT
  public static int SMP_HEIGHT

Constructors

 o ContextParams
  public ContextParams()

All Packages  Class Hierarchy  This Package  Previous  Next  Index