Package net.sourceforge.squirrel_sql.client.session.mainpanel.objecttree.expanders

Examples of net.sourceforge.squirrel_sql.client.session.mainpanel.objecttree.expanders.SequenceParentExpander


{

  @Before
  public void setUp() throws Exception
  {
    classUnderTest = new SequenceParentExpander();
    ISequenceParentExtractor mockExtractor = mockHelper.createMock(ISequenceParentExtractor.class);
    EasyMock.expect(mockExtractor.getSequenceParentQuery()).andReturn("test query");
    mockExtractor.bindParameters(isA(PreparedStatement.class), isA(IDatabaseObjectInfo.class),
      isA(ObjFilterMatcher.class));
    ((SequenceParentExpander) classUnderTest).setExtractor(mockExtractor);
View Full Code Here


  /**
   * @see net.sourceforge.squirrel_sql.client.session.mainpanel.objecttree.INodeExpanderFactory#createExpander(net.sourceforge.squirrel_sql.fw.sql.DatabaseObjectType)
   */
  public INodeExpander createExpander(DatabaseObjectType type)
  {
    SequenceParentExpander result = new SequenceParentExpander();
    result.setExtractor(new InformixSequenceExtractorImpl());
    return result;
  }
View Full Code Here

  /**
   * @see net.sourceforge.squirrel_sql.client.session.mainpanel.objecttree.INodeExpanderFactory#createExpander(net.sourceforge.squirrel_sql.fw.sql.DatabaseObjectType)
   */
  public INodeExpander createExpander(DatabaseObjectType type)
  {
    SequenceParentExpander result = new SequenceParentExpander();
    result.setExtractor(new PostgresSequenceParentExtractorImpl());
    return result;
  }
View Full Code Here

  /**
   * @see net.sourceforge.squirrel_sql.client.session.mainpanel.objecttree.INodeExpanderFactory#createExpander(net.sourceforge.squirrel_sql.fw.sql.DatabaseObjectType)
   */
  public INodeExpander createExpander(DatabaseObjectType type)
  {
    SequenceParentExpander result = new SequenceParentExpander();
    result.setExtractor(new NetezzaSequenceParentExtractorImpl());
    return result;
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.client.session.mainpanel.objecttree.expanders.SequenceParentExpander

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.