Class com.symantec.itools.vcafe.openapi.options.ProjectOptionSet
All Packages Class Hierarchy This Package Previous Next Index
Class com.symantec.itools.vcafe.openapi.options.ProjectOptionSet
Object
|
+----com.symantec.itools.vcafe.openapi.options.ProjectOptionSet
- public abstract class ProjectOptionSet
- extends Object
The API used to represent and access the options of a Visual Cafe project.
The settings from various tabs of the "Project Options" dialog are accessed via a
VisualProject
's ProjectOptionSet
.
Use VisualProject.getOptionSet()
to get an instance of this object.
- Version:
- 1.0
- Author:
- Symantec Internet Tools Division
- Since:
- VCafe 3.0
- See Also:
- getOptionSet, ProjectOptions, CompilerOptions, DirectoriesOptions
-
com.symantec.itools.vcafe.openapi.options.ProjectOptionSet()
-
-
getCompilerOptions()
- Gets this project's compiler options.
-
getDirectoriesOptions()
- Gets this project's directory options.
-
getProjectOptions()
- Gets this project's general options.
ProjectOptionSet
public ProjectOptionSet()
getCompilerOptions
public abstract com.symantec.itools.vcafe.openapi.options.CompilerOptions getCompilerOptions()
- Gets this project's compiler options.
The returned CompilerOptions
object allows access to the options in the "Compiler" tab
for this project.
- Returns:
- the Compiler tab's options.
- See Also:
- CompilerOptions
getDirectoriesOptions
public abstract com.symantec.itools.vcafe.openapi.options.DirectoriesOptions getDirectoriesOptions()
- Gets this project's directory options.
The returned DirectoriesOptions
object allows access to the options in the "Directories" tab
for this project.
- Returns:
- the Directories tab's options.
- See Also:
- DirectoriesOptions
getProjectOptions
public abstract com.symantec.itools.vcafe.openapi.options.ProjectOptions getProjectOptions()
- Gets this project's general options.
The returned ProjectOptions
object allows access to the options in the "Project" tab
for this project.
- Returns:
- the Project tab's options.
- See Also:
- ProjectOptions
All Packages Class Hierarchy This Package Previous Next Index