CloneSet1207


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11201.000class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111454
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/AbstractFolder.java
21182
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/outbox/OutboxFolder.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
454
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/AbstractFolder.java

/**
 * Returns true if this folder can have sub folders of the specified type;
 * false otherwise.
 * 
 * @param newFolderType
 *            the folder that is going to be inserted as a child.
 * @return true if this folder can have sub folders; false otherwise.
 */
public boolean supportsAddFolder(String newFolderType) {
  return false;
}

/**
 * Returns true if this folder type can be moved around in the folder tree.
 * 
 * @return true if this folder type can be moved around in the folder tree.
 */
public boolean supportsMove() {
  return false;
}


First
Previous
Clone Instance
2
Line Count
11
Source Line
82
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/outbox/OutboxFolder.java

/**
 * The outbox folder doesnt allow adding folders to it.
 * 
 * @param newFolderType
 *            folder to check..
 * @return false always.
 */
public boolean supportsAddFolder(String newFolderType) {
  return false;
}

/**
 * Returns if this folder type can be moved.
 * 
 * @return false always.
 */
public boolean supportsMove() {
  return false;
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
         * The outbox folder doesnt allow adding folders to it.
         * 
         * @param newFolderType
         *            folder to check..
         * @return false always.
         */
/**
         * Returns true if this folder can have sub folders of the specified type;
         * false otherwise.
         * 
         * @param newFolderType
         *            the folder that is going to be inserted as a child.
         * @return true if this folder can have sub folders; false otherwise.
         */
public boolean supportsAddFolder(String newFolderType) {
  return false;
}

/**
         * Returns if this folder type can be moved.
         * 
         * @return false always.
         */
/**
         * Returns true if this folder type can be moved around in the folder tree.
         * 
         * @return true if this folder type can be moved around in the folder tree.
         */
public boolean supportsMove() {
  return false;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None