Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 2 | 0 | 1.000 | statement_sequence[3] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 140 | E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DTProperties.java |
2 | 6 | 159 | E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/DTProperties.java |
| |||||
// if we have seen a property for this DataType before, then the // hashmap already exists. Otherwise, we need to create it now. HashMap<String, String> h = dataTypes.get(dataTypeName); if (h == null) { h = new HashMap<String, String>(); dataTypes.put(dataTypeName, h); } // put the property into the hashmap h.put(propertyName, propertyValue); |
| |||||
// get the hashmap for this type, or create it if this is a new property HashMap<String, String> h = dataTypes.get(dataTypeName); if (h == null) { h = new HashMap<String, String>(); dataTypes.put(dataTypeName, h); } h.put(propertyName, propertyValue); |
| |||
// if we have seen a property for this DataType before, then the // hashmap already exists. Otherwise, we need to create it now. // get the hashmap for this type, or create it if this is a new property HashMap<String, String> h = dataTypes.get(dataTypeName); if (h == null) { h = new HashMap<String, String>(); dataTypes.put(dataTypeName, h); } // put the property into the hashmap h.put(propertyName, propertyValue); |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |