Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 2 | 2 | 0.973 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 2977 | E:/TSE/Projects-CloneDR/jEdit-4.2/com/microstar/xml/XmlParser.java |
2 | 7 | 2997 | E:/TSE/Projects-CloneDR/jEdit-4.2/com/microstar/xml/XmlParser.java |
| |||||
/** * Look up the public identifier for a notation. * You will normally use this method to look up a notation * that was provided as an attribute value or for an NDATA entity. * @param nname The name of the notation. * @return A string containing the public identifier, or null * if none was provided or if no such notation was * declared. * @see #getNotationSystemId */ public String getNotationPublicId(String nname) { Object notation[] = (Object[]) notationInfo.get(nname); if (notation == null) { return null; } else { return (String) notation[0]; } } |
| |||||
/** * Look up the system identifier for a notation. * You will normally use this method to look up a notation * that was provided as an attribute value or for an NDATA entity. * @param nname The name of the notation. * @return A string containing the system identifier, or null * if no such notation was declared. * @see #getNotationPublicId */ public String getNotationSystemId(String nname) { Object notation[] = (Object[]) notationInfo.get(nname); if (notation == null) { return null; } else { return (String) notation[1]; } } |
| |||
/** * Look up the system identifier for a notation. * You will normally use this method to look up a notation * that was provided as an attribute value or for an NDATA entity. * @param nname The name of the notation. * @return A string containing the system identifier, or null * if no such notation was declared. * @see #getNotationPublicId */ /** * Look up the public identifier for a notation. * You will normally use this method to look up a notation * that was provided as an attribute value or for an NDATA entity. * @param nname The name of the notation. * @return A string containing the public identifier, or null * if none was provided or if no such notation was * declared. * @see #getNotationSystemId */ public String [[#variableaeccd00]](String nname) { Object notation[] = (Object[]) notationInfo.get(nname); if (notation == null) { return null; } else { return (String) notation[ [[#variableaeccc60]]]; } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#aeccd00]] | getNotationPublicId |
1 | 2 | [[#aeccd00]] | getNotationSystemId |
2 | 1 | [[#aeccc60]] | 0 |
2 | 2 | [[#aeccc60]] | 1 |