home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-25 | 2.5 KB | 71 lines |
- /*
- * Copyright 1998 Symantec Corporation, All Rights Reserved.
- */
-
- package com.symantec.itools.vcafe.openapi.options;
-
- /**
- * The API used to represent and access the options of the Visual Cafe environment.
- * The settings from various tabs of the "Environment Options" dialog are accessed via a
- * <code>VisualCafe</code>'s <code>EnvironmentOptionSet</code>.
- * <p>Use <code>VisualCafe.getEnvironmentOptionSet()</code> to get an instance of this object.
- *
- * @see com.symantec.itools.vcafe.openapi.VisualCafe#getEnvironmentOptionSet
- * @see EnvironmentGeneralOptions
- * @see EnvironmentDebuggingOptions
- * @see EnvironmentDisplayOptions
- * @see EnvironmentEditingOptions
- */
- public abstract class EnvironmentOptionSet
- {
- /**
- * Gets the environment's general options.
- * <p>The returned <code>EnvironmentGeneralOptions</code> object allows access to the options in the
- * "General" tab of the Environment Options dialog.
- *
- * @return the General tab's options.
- * @see EnvironmentGeneralOptions
- */
- public abstract EnvironmentGeneralOptions getGeneralOptions();
-
- /**
- * Gets the environment's debugging options.
- * <p>The returned <code>EnvironmentDebuggingOptions</code> object allows access to the options in the
- * "Debugging" tab of the Environment Options dialog.
- *
- * @return the Debugging tab's options.
- * @see EnvironmentDebuggingOptions
- */
- public abstract EnvironmentDebuggingOptions getDebuggingOptions();
-
- /**
- * Gets the environment's display options.
- * <p>The returned <code>EnvironmentDisplayOptions</code> object allows access to the options in the
- * "Display" tab of the Environment Options dialog.
- *
- * @return the Display tab's options.
- * @see EnvironmentDisplayOptions
- */
- public abstract EnvironmentDisplayOptions getDisplayOptions();
-
- /**
- * Gets the environment's editing options.
- * <p>The returned <code>EnvironmentEditingOptions</code> object allows access to the options in the
- * "Editing" tab of the Environment Options dialog.
- *
- * @return the Editing tab's options.
- * @see EnvironmentEditingOptions
- */
- public abstract EnvironmentEditingOptions getEditingOptions();
-
- /**
- * Gets the environment's format options.
- * <p>The returned <code>EnvironmentFormatOptions</code> object allows access to the options in the
- * "Format" tab of the Environment Options dialog.
- *
- * @return the Format tab's options.
- * @see EnvironmentFormatOptions
- */
- public abstract EnvironmentFormatOptions getFormatOptions();
- }
-