CloneSet196


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7220.973method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
172977
E:/TSE/Projects-CloneDR/jEdit-4.2/com/microstar/xml/XmlParser.java
272997
E:/TSE/Projects-CloneDR/jEdit-4.2/com/microstar/xml/XmlParser.java
Next
Last
Clone Instance
1
Line Count
7
Source Line
2977
Source File
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];
  }
}


First
Previous
Clone Instance
2
Line Count
7
Source Line
2997
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/com/microstar/xml/XmlParser.java

/**
  * 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];
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
    * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#aeccd00]]
getNotationPublicId 
12[[#aeccd00]]
getNotationSystemId 
21[[#aeccc60]]
0 
22[[#aeccc60]]
1