Package com._1c.g5.v8.dt.bsl.common
Interface IBslPreferences
-
- All Known Implementing Classes:
BslPreferences
public interface IBslPreferencesInterface for saving and loadingEnvironmentfrom Bsl validation property page
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIBslPreferences.EnvironmentLaunchModeEnvironment "Default run mode" for validation
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteEnvs(org.eclipse.core.resources.IProject project)Deletes load environment forprojectDocumentationCommentPropertiesgetDocumentCommentProperties(org.eclipse.core.resources.IProject project)Gets properties for Bsl documentation comment.IBslPreferences.EnvironmentLaunchModegetEnvLaunchMode(org.eclipse.core.resources.IProject project)Gets saving value of environment "Default launch mode"EnvironmentsgetLoadEnvs(org.eclipse.core.resources.IProject project)Gets filteringEnvironmentsfrom property page for BSLEnvironmentsgetLoadEnvs(org.eclipse.emf.ecore.EObject object)Gets filteringEnvironmentsfrom property page for BSLTypeSystemPropertiesgetTypeSystemProperties(org.eclipse.core.resources.IProject project)Gets properties for Type System of Built-In language.Map<Environment,Boolean>loadEnv(org.eclipse.core.resources.IProject project, IBslPreferences.EnvironmentLaunchMode mode)Loads selectedEnvironmentfrom property page for projectbooleansetLaunchMode(org.eclipse.core.resources.IProject project, int mode)Sets value of environment "Launch mode"
-
-
-
Method Detail
-
loadEnv
Map<Environment,Boolean> loadEnv(org.eclipse.core.resources.IProject project, IBslPreferences.EnvironmentLaunchMode mode)
Loads selectedEnvironmentfrom property page for project- Parameters:
project- -IProjectactual project, can't benullmode- actual environment "Default run mode", can't benull- Returns:
- all allowed environments with boolean flag, never
null
-
getEnvLaunchMode
IBslPreferences.EnvironmentLaunchMode getEnvLaunchMode(org.eclipse.core.resources.IProject project)
Gets saving value of environment "Default launch mode"- Parameters:
project-IProjectactual project, can't benull- Returns:
- saving value of environment "Default launch mode", never
null
-
getLoadEnvs
Environments getLoadEnvs(org.eclipse.emf.ecore.EObject object)
Gets filteringEnvironmentsfrom property page for BSL- Parameters:
object- object for getting current project, can't benull- Returns:
- current filtering
Environments, nevernull
-
getLoadEnvs
Environments getLoadEnvs(org.eclipse.core.resources.IProject project)
Gets filteringEnvironmentsfrom property page for BSL- Parameters:
project- current project, can't benull- Returns:
- current filtering
Environments, nevernull
-
setLaunchMode
boolean setLaunchMode(org.eclipse.core.resources.IProject project, int mode)Sets value of environment "Launch mode"- Parameters:
project-IProjectactual project, can't benullmode- saving value of environment "Launch mode"- Returns:
trueif new value was be set,falseotherwise
-
deleteEnvs
void deleteEnvs(org.eclipse.core.resources.IProject project)
Deletes load environment forproject- Parameters:
project- actual project for deleting environment for it, can't benull
-
getTypeSystemProperties
TypeSystemProperties getTypeSystemProperties(org.eclipse.core.resources.IProject project)
Gets properties for Type System of Built-In language. SeeTypeSystemProperties- Parameters:
project- actual project, can't benull- Returns:
- properties for Type System of Built-In language, never
null
-
getDocumentCommentProperties
DocumentationCommentProperties getDocumentCommentProperties(org.eclipse.core.resources.IProject project)
Gets properties for Bsl documentation comment. SeeDocumentationCommentProperties- Parameters:
project- actual project, can't benull- Returns:
- properties for Bsl documentation comment, never
null
-
-