public static class OutputProperty { /** output property name */ private String name; /** output property value */ private String value; /** * @return the output property name. */ public String getName() { return name; } /** * set the name for this property * @param name A non-null String that specifies an * output property name, which may be namespace qualified. */ public void setName(String name) { this.name = name; } /** * @return the output property value. */ public String getValue() { return value; } /** * set the value for this property * @param value The non-null string value of the output property. */ public void setValue(String value) { this.value = value;
public static final class Property { private String name; private String value; /** * accessor to the name of the property * @return name of the property */ public String getName() { return name; } /** * setter for the name of the property * @param name name of the property */ public void setName(String name) { this.name = name; } /** * getter for the value of the property * @return value of the property */ public String getValue() { return value; } /** * sets the value of the property * @param value value of the property */ public void setValue(String value) { this.value = value;
Clone fragments detected by clone detection tool
File path: /apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/XSLTProcess.java File path: /apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public static class OutputProperty {
1
public static final class Property {
2
 
3
       /** output property name */
2
        private String name;
4
        private String name;
3
        private String value;
5
        /** output property value */
4
        /**
6
        private String value;
7
        /**
5
         * accessor to the name of the property
8
         * @return the output property name.
6
         * @return name of the property
9
         */
7
         */
10
        public String getName() {
8
        public String getName() {
11
            return name;
9
            return name;
12
        }
10
        }
13
        /**
11
        /**
14
         * set the name for this property
12
         * setter for the name of the property
15
         * @param name A non-null String that specifies an
13
         * @param name 
16
         * output property name, which may be namespace qualified.
14
name of the property
17
         */
15
         */
18
        public void setName(String name) {
16
        public void setName(String name) {
19
            this.name = name;
17
            this.name = name;
20
        }
18
        }
21
        /**
19
        /**
22
         * @return the output property value.
20
         * getter for the value of the property
21
         * @return value of the property
23
         */
22
         */
24
        public String getValue() {
23
        public String getValue() {
25
            return value;
24
            return value;
26
        }
25
        }
27
        /**
26
        /**
28
         * set the value for this property
27
         * sets the value of the property
29
         * @param value The non-null string value of the output property.
28
         * @param value value of the property
30
         */
29
         */
31
        public void setValue(String value) {
30
        public void setValue(String value) {
32
            this.value = value;
31
            this.value = value;
33
        
32
        
Summary
Number of common nesting structure subtrees0
Number of refactorable cases0
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones location
Number of node comparisons0