CloneSet485


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
15230.979executable_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
115140
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/plugin/PluginManager.java
215263
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/plugin/PluginManager.java
Next
Last
Clone Instance
1
Line Count
15
Source Line
140
Source File
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/plugin/PluginManager.java

for (Iterator<SessionPluginInfo> it = _sessionPlugins.iterator(); it.hasNext();) {
  SessionPluginInfo spi = it.next();
  try {
    spi.getSessionPlugin().sessionCreated(session);
  }
  catch (Throwable
         th) {
    String msg = s_stringMgr.getString("PluginManager.error.sessioncreated", spi.getPlugin().getDescriptiveName());
    s_log.error(msg, th);
    _app.showErrorDialog(msg, th);
  }
}


First
Previous
Clone Instance
2
Line Count
15
Source Line
263
Source File
E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/plugin/PluginManager.java

for (Iterator<SessionPluginInfo> it = plugins.iterator(); it.hasNext();) {
  SessionPluginInfo spi = it.next();
  try {
    spi.getSessionPlugin().sessionEnding(session);
  }
  catch (Throwable
         th) {
    String msg = s_stringMgr.getString("PluginManager.error.sessionended", spi.getPlugin().getDescriptiveName());
    s_log.error(msg, th);
    _app.showErrorDialog(msg, th);
  }
}


Clone AbstractionParameter Count: 3Parameter Bindings

for (Iterator<SessionPluginInfo> it = [[#variable1ce8f2e0]].iterator(); it.hasNext();) {
  SessionPluginInfo spi = it.next();
  try {
    spi.getSessionPlugin(). [[#variable1ce8f220]](session);
  }
  catch (Throwable
         th) {
    String msg = s_stringMgr.getString( [[#variable1ce8f020]], spi.getPlugin().getDescriptiveName());
    s_log.error(msg, th);
    _app.showErrorDialog(msg, th);
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1ce8f2e0]]
_sessionPlugins 
12[[#1ce8f2e0]]
plugins 
21[[#1ce8f220]]
sessionCreated 
22[[#1ce8f220]]
sessionEnding 
31[[#1ce8f020]]
"PluginManager.error.sessioncreated" 
32[[#1ce8f020]]
"PluginManager.error.sessionended"