CloneSet9


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
252330.977compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/codecompletion/CodeCompletionPluginTest.java
22519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/dataimport/DataImportPluginTest.java
32519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/db2/DB2PluginTest.java
42519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/dbdiff/DBDiffPluginTest.java
52519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/editextras/EditExtrasPluginTest.java
62519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/exportconfig/ExportConfigPluginTest.java
72519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/favs/SavedQueriesPluginTest.java
82519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/firebirdmanager/FirebirdManagerPluginTest.java
92519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/h2/H2PluginTest.java
102519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/hibernate/HibernatePluginTest.java
112519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/i18n/I18nPluginTest.java
122519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/informix/InformixPluginTest.java
132519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/laf/LAFPluginTest.java
142519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/macosx/MacOSPluginTest.java
152519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/postgres/PostgresPluginTest.java
162519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/refactoring/RefactoringPluginTest.java
172519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/smarttools/SmarttoolsPluginTest.java
182519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/sqlparam/SQLParamPluginTest.java
192519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/sqlreplace/SQLReplacePluginTest.java
202519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/sqlscript/SQLScriptPluginTest.java
212519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/sqlval/SQLValidatorPluginTest.java
222519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/SybaseASE/SybaseASEPluginTest.java
232519
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/syntax/SyntaxPluginTest.java
Next
Last
Clone Instance
1
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/codecompletion/CodeCompletionPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.codecompletion;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class CodeCompletionPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new CodeCompletionPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
2
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/dataimport/DataImportPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.dataimport;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class DataImportPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new DataImportPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
3
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/db2/DB2PluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.db2;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class DB2PluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new DB2Plugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
4
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/dbdiff/DBDiffPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.dbdiff;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class DBDiffPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new DBDiffPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
5
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/editextras/EditExtrasPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.editextras;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class EditExtrasPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new EditExtrasPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
6
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/exportconfig/ExportConfigPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.exportconfig;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class ExportConfigPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new ExportConfigPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
7
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/favs/SavedQueriesPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.favs;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class SavedQueriesPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new SavedQueriesPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
8
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/firebirdmanager/FirebirdManagerPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.firebirdmanager;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class FirebirdManagerPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new FirebirdManagerPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
9
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/h2/H2PluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.h2;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class H2PluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new H2Plugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
10
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/hibernate/HibernatePluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.hibernate;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class HibernatePluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new HibernatePlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
11
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/i18n/I18nPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.i18n;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class I18nPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new I18nPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
12
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/informix/InformixPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.informix;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class InformixPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new InformixPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
13
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/laf/LAFPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.laf;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class LAFPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new LAFPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
14
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/macosx/MacOSPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.macosx;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class MacOSPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new MacOSPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
15
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/postgres/PostgresPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.postgres;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class PostgresPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new PostgresPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
16
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/refactoring/RefactoringPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.refactoring;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class RefactoringPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new RefactoringPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
17
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/smarttools/SmarttoolsPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.smarttools;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class SmarttoolsPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new SmarttoolsPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
18
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/sqlparam/SQLParamPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.sqlparam;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class SQLParamPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new SQLParamPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
19
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/sqlreplace/SQLReplacePluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.sqlreplace;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class SQLReplacePluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new SQLReplacePlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
20
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/sqlscript/SQLScriptPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.sqlscript;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class SQLScriptPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new SQLScriptPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
21
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/sqlval/SQLValidatorPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.sqlval;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class SQLValidatorPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new SQLValidatorPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Next
Previous
Clone Instance
22
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/SybaseASE/SybaseASEPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.SybaseASE;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class SybaseASEPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new SybaseASEPlugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




First
Previous
Clone Instance
23
Line Count
25
Source Line
19
Source File
E:/TSE/Projects-CloneDR/sql12/test/src/net/sourceforge/squirrel_sql/plugins/syntax/SyntaxPluginTest.java

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins.syntax;

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class SyntaxPluginTest extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new SyntaxPugin();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}




Clone AbstractionParameter Count: 3Parameter Bindings

/*
 * Copyright (C) 2008 Rob Manning
 * manningr@users.sourceforge.net
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package net.sourceforge.squirrel_sql.plugins. [[#variable18c44440]];

import net.sourceforge.squirrel_sql.plugins.AbstractPluginTest;
import net.sourceforge.squirrel_sql.plugins.DatabaseProductVersionData;
import org.junit.After;
import org.junit.Before;

public class [[#variable18e143c0]]extends AbstractPluginTest implements DatabaseProductVersionData {
  @Before public void setUp() throws Exception {
    classUnderTest = new [[#variable1cf0ee60]]();
  }

  @After public void tearDown() throws Exception {
    classUnderTest = null;
  }
}


 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18c44440]]
codecompletion 
12[[#18c44440]]
dataimport 
13[[#18c44440]]
db2 
14[[#18c44440]]
dbdiff 
15[[#18c44440]]
editextras 
16[[#18c44440]]
exportconfig 
17[[#18c44440]]
favs 
18[[#18c44440]]
firebirdmanager 
19[[#18c44440]]
h2 
110[[#18c44440]]
hibernate 
111[[#18c44440]]
i18n 
112[[#18c44440]]
informix 
113[[#18c44440]]
laf 
114[[#18c44440]]
macosx 
115[[#18c44440]]
postgres 
116[[#18c44440]]
refactoring 
117[[#18c44440]]
smarttools 
118[[#18c44440]]
sqlparam 
119[[#18c44440]]
sqlreplace 
120[[#18c44440]]
sqlscript 
121[[#18c44440]]
sqlval 
122[[#18c44440]]
SybaseASE 
123[[#18c44440]]
syntax 
21[[#18e143c0]]
CodeCompletionPluginTest 
22[[#18e143c0]]
DataImportPluginTest 
23[[#18e143c0]]
DB2PluginTest 
24[[#18e143c0]]
DBDiffPluginTest 
25[[#18e143c0]]
EditExtrasPluginTest 
26[[#18e143c0]]
ExportConfigPluginTest 
27[[#18e143c0]]
SavedQueriesPluginTest 
28[[#18e143c0]]
FirebirdManagerPluginTest 
29[[#18e143c0]]
H2PluginTest 
210[[#18e143c0]]
HibernatePluginTest 
211[[#18e143c0]]
I18nPluginTest 
212[[#18e143c0]]
InformixPluginTest 
213[[#18e143c0]]
LAFPluginTest 
214[[#18e143c0]]
MacOSPluginTest 
215[[#18e143c0]]
PostgresPluginTest 
216[[#18e143c0]]
RefactoringPluginTest 
217[[#18e143c0]]
SmarttoolsPluginTest 
218[[#18e143c0]]
SQLParamPluginTest 
219[[#18e143c0]]
SQLReplacePluginTest 
220[[#18e143c0]]
SQLScriptPluginTest 
221[[#18e143c0]]
SQLValidatorPluginTest 
222[[#18e143c0]]
SybaseASEPluginTest 
223[[#18e143c0]]
SyntaxPluginTest 
31[[#1cf0ee60]]
CodeCompletionPlugin 
32[[#1cf0ee60]]
DataImportPlugin 
33[[#1cf0ee60]]
DB2Plugin 
34[[#1cf0ee60]]
DBDiffPlugin 
35[[#1cf0ee60]]
EditExtrasPlugin 
36[[#1cf0ee60]]
ExportConfigPlugin 
37[[#1cf0ee60]]
SavedQueriesPlugin 
38[[#1cf0ee60]]
FirebirdManagerPlugin 
39[[#1cf0ee60]]
H2Plugin 
310[[#1cf0ee60]]
HibernatePlugin 
311[[#1cf0ee60]]
I18nPlugin 
312[[#1cf0ee60]]
InformixPlugin 
313[[#1cf0ee60]]
LAFPlugin 
314[[#1cf0ee60]]
MacOSPlugin 
315[[#1cf0ee60]]
PostgresPlugin 
316[[#1cf0ee60]]
RefactoringPlugin 
317[[#1cf0ee60]]
SmarttoolsPlugin 
318[[#1cf0ee60]]
SQLParamPlugin 
319[[#1cf0ee60]]
SQLReplacePlugin 
320[[#1cf0ee60]]
SQLScriptPlugin 
321[[#1cf0ee60]]
SQLValidatorPlugin 
322[[#1cf0ee60]]
SybaseASEPlugin 
323[[#1cf0ee60]]
SyntaxPugin