Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
12 | 2 | 2 | 0.971 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 14 | 76 | E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/db/AliasInternalFrame.java |
2 | 12 | 60 | E:/TSE/Projects-CloneDR/sql12/app/src/net/sourceforge/squirrel_sql/client/gui/db/DriverInternalFrame.java |
| |||||
/** * Maintenance types. */ public interface IMaintenanceType { /** A new alias is being created. */ int NEW = 1; /** An existing alias is being maintained. */ int MODIFY = 2; /** A new alias is being created as a copy of an existing one. */ int COPY = 3; } /** Internationalized strings for this class. */ private static final StringManager s_stringMgr = StringManagerFactory.getStringManager(AliasInternalFrame.class ); |
| |||||
/** Different types of maintenance that can be done. */ public interface MaintenanceType { int NEW = 1; int MODIFY = 2; int COPY = 3; } /** Internationalized strings for this class. */ private static final StringManager s_stringMgr = StringManagerFactory.getStringManager(DriverInternalFrame.class ); |
| |||
/** Different types of maintenance that can be done. */ /** * Maintenance types. */ public interface [[#variable1c8057a0]]{ /** A new alias is being created. */ int NEW = 1; /** An existing alias is being maintained. */ int MODIFY = 2; /** A new alias is being created as a copy of an existing one. */ int COPY = 3; } /** Internationalized strings for this class. */ private static final StringManager s_stringMgr = StringManagerFactory.getStringManager( [[#variable1c805720]].class ); |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1c8057a0]] | IMaintenanceType |
1 | 2 | [[#1c8057a0]] | MaintenanceType |
2 | 1 | [[#1c805720]] | AliasInternalFrame |
2 | 2 | [[#1c805720]] | DriverInternalFrame |