Uses of Interface
org.eclipse.datatools.sqltools.sqlbuilder.model.IOmitSchemaInfo

Packages that use IOmitSchemaInfo
org.eclipse.datatools.sqltools.sqlbuilder   
org.eclipse.datatools.sqltools.sqlbuilder.dialogs   
org.eclipse.datatools.sqltools.sqlbuilder.input   
org.eclipse.datatools.sqltools.sqlbuilder.model   
org.eclipse.datatools.sqltools.sqlbuilder.util   
 

Uses of IOmitSchemaInfo in org.eclipse.datatools.sqltools.sqlbuilder
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder that return IOmitSchemaInfo
 IOmitSchemaInfo SQLBuilder.getOmitSchemaInfo()
          Gets the OmitSchemaInfo object associated with this statement
 

Uses of IOmitSchemaInfo in org.eclipse.datatools.sqltools.sqlbuilder.dialogs
 

Constructors in org.eclipse.datatools.sqltools.sqlbuilder.dialogs with parameters of type IOmitSchemaInfo
OmitCurrentSchemaDialog(org.eclipse.swt.widgets.Shell parentShell, IOmitSchemaInfo omitSchemaInfo, java.lang.String userName)
          Creates a dialog for OmitCurrentSchema settings with an OK and Cancel button.
 

Uses of IOmitSchemaInfo in org.eclipse.datatools.sqltools.sqlbuilder.input
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.input that return IOmitSchemaInfo
 IOmitSchemaInfo SQLBuilderEditorInput.getOmitSchemaInfo()
          Gets the IOmitSchemaInfo associated with this input.
 IOmitSchemaInfo SQLBuilderStorageEditorInput.getOmitSchemaInfo()
          Gets the IOmitSchemaInfo associated with this input.
 IOmitSchemaInfo ISQLBuilderEditorInput.getOmitSchemaInfo()
          Gets information about whether or not to omit the default schema name from SQL generated in the SQL Builder.
 IOmitSchemaInfo SQLBuilderFileEditorInput.getOmitSchemaInfo()
          Gets the IOmitSchemaInfo associated with this input.
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.input with parameters of type IOmitSchemaInfo
 void SQLBuilderEditorInput.setOmitSchemaInfo(IOmitSchemaInfo omitSchemaInfo)
          Sets the OmitSchemaInfo associated with this input to the given object.
 void SQLBuilderStorageEditorInput.setOmitSchemaInfo(IOmitSchemaInfo omitSchemaInfo)
          Sets the IOmitSchemaInfo associated with this input to the given object.
 void ISQLBuilderEditorInput.setOmitSchemaInfo(IOmitSchemaInfo omitSchemaInfo)
          Sets information about whether or not to omit the default schema name from SQL generated in the SQL Builder.
 void SQLBuilderFileEditorInput.setOmitSchemaInfo(IOmitSchemaInfo omitSchemaInfo)
          Sets the OmitSchemaInfo associated with this input to the given object.
 

Constructors in org.eclipse.datatools.sqltools.sqlbuilder.input with parameters of type IOmitSchemaInfo
SQLBuilderEditorInput(IConnectionProfile connectionProfile, ISQLStatementInfo sqlStatementInfo, IOmitSchemaInfo omitSchemaInfo)
          Creates an instance of this class with the given ConnectionProfile, SQLStatementInfo and OmitSchemaInfo.
SQLBuilderEditorInput(ISQLEditorConnectionInfo connectionInfo, ISQLStatementInfo sqlStatementInfo, IOmitSchemaInfo omitSchemaInfo)
          Creates an instance of this class with the given ConnectionInfo and SQLStatementInfo.
 

Uses of IOmitSchemaInfo in org.eclipse.datatools.sqltools.sqlbuilder.model
 

Classes in org.eclipse.datatools.sqltools.sqlbuilder.model that implement IOmitSchemaInfo
 class OmitSchemaInfo
          This class defines the set of properties which determine whether the current schema name is omitted from SQL generated by the SQL Query Builder.
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.model that return IOmitSchemaInfo
 IOmitSchemaInfo SQLDomainModel.getOmitSchemaInfo()
          Gets the OmitSchemaInfo object associated with this statement
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.model with parameters of type IOmitSchemaInfo
 void IOmitSchemaInfo.copy(IOmitSchemaInfo iOmitSchemaInfo)
          Copy the IOmitSchemaInfo passed as a parameter to this OmitSchemaInfo.
 void OmitSchemaInfo.copy(IOmitSchemaInfo iOmitSchemaInfo)
          Implements copy(IOmitSchemaInfo)
 boolean IOmitSchemaInfo.equals(IOmitSchemaInfo iOmitSchemaInfo)
          Returns true if the IOmitSchemaInfo passed has the same values as this OmitSchemaInfo
 boolean OmitSchemaInfo.equals(IOmitSchemaInfo iOmitSchemaInfo)
          Implements equals(IOmitSchemaInfo)
 void SQLDomainModel.setOmitSchemaInfo(IOmitSchemaInfo info)
          Sets the OmitSchemaInfo object associated with this statement to the given object.
 

Uses of IOmitSchemaInfo in org.eclipse.datatools.sqltools.sqlbuilder.util
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.util that return IOmitSchemaInfo
static IOmitSchemaInfo SQLFileUtil.getOmitSchemaInfo(org.eclipse.core.resources.IFile file)