CloneSet6521


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10220.982class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110243
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/EventSetImpl.java
210267
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/EventSetImpl.java
Clone Instance
1
Line Count
10
Source Line
243
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/EventSetImpl.java

        /**
         * @see java.util.Collection#add(Object).
         * @exception UnsupportedOperationException always thrown since EventSets are unmodifiable.
         */
        public boolean add(Object arg1) {
                throw new UnsupportedOperationException(EventMessages.EventSetImpl_EventSets_are_unmodifiable_3);
        }

        /**
         * @see java.util.Collection#addAll(Collection)
         * @exception UnsupportedOperationException always thrown since EventSets are unmodifiable.
         */
        public boolean addAll(Collection arg1) {
                throw new UnsupportedOperationException(EventMessages.EventSetImpl_EventSets_are_unmodifiable_3);
        }


Clone Instance
2
Line Count
10
Source Line
267
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/EventSetImpl.java

        /**
         * @see java.util.Collection#remove(Object)
         * @exception UnsupportedOperationException always thrown since EventSets are unmodifiable.
         */
        public boolean remove(Object arg1) {
                throw new UnsupportedOperationException(EventMessages.EventSetImpl_EventSets_are_unmodifiable_3);
        }

        /**
         * @see java.util.Collection#removeAll(Collection)
         * @exception UnsupportedOperationException always thrown since EventSets are unmodifiable.
         */
        public boolean removeAll(Collection arg1) {
                throw new UnsupportedOperationException(EventMessages.EventSetImpl_EventSets_are_unmodifiable_3);
        }


Clone AbstractionParameter Count: 2Parameter Bindings

/**
         * @see java.util.Collection#remove(Object)
         * @exception UnsupportedOperationException always thrown since EventSets are unmodifiable.
         */
/**
         * @see java.util.Collection#add(Object).
         * @exception UnsupportedOperationException always thrown since EventSets are unmodifiable.
         */
public boolean  [[#variable61ca8940]](Object arg1) {
  throw new UnsupportedOperationException(EventMessages.EventSetImpl_EventSets_are_unmodifiable_3);
}

/**
         * @see java.util.Collection#removeAll(Collection)
         * @exception UnsupportedOperationException always thrown since EventSets are unmodifiable.
         */
/**
         * @see java.util.Collection#addAll(Collection)
         * @exception UnsupportedOperationException always thrown since EventSets are unmodifiable.
         */
public boolean  [[#variable61800880]](Collection arg1) {
  throw new UnsupportedOperationException(EventMessages.EventSetImpl_EventSets_are_unmodifiable_3);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#61ca8940]]
remove 
12[[#61ca8940]]
add 
21[[#61800880]]
removeAll 
22[[#61800880]]
addAll