CloneSet30


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
36430.983compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13618
E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/DonateAction.java
24816
E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/ShowBugDatabaseAction.java
33716
E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/ShowFAQAction.java
43716
E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/ShowProjectPageAction.java
Next
Last
Clone Instance
1
Line Count
36
Source Line
18
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/DonateAction.java

// The contents of this file are subject to the Mozilla Public License Version
// 1.1
//(the "License"); you may not use this file except in compliance with the
//License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
//
//Software distributed under the License is distributed on an "AS IS" basis,
//WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
//for the specific language governing rights and
//limitations under the License.
//
//The Original Code is "The Columba Project"
//
//The Initial Developers of the Original Code are Frederik Dietz and Timo
// Stich.
//Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
//
//All Rights Reserved.
package org.columba.core.gui.globalactions;

import java.awt.event.ActionEvent;
import java.net.MalformedURLException;
import java.net.URL;
import org.columba.api.gui.frame.IFrameMediator;
import org.columba.core.gui.action.AbstractColumbaAction;
import org.columba.core.gui.util.URLController;
import org.columba.core.resourceloader.GlobalResourceLoader;

public class DonateAction extends AbstractColumbaAction {
  public DonateAction(IFrameMediator frameMediator) {
    super(frameMediator, GlobalResourceLoader.getString(null, null, "menu_help_donate"));
  }

  /*
   * (non-Javadoc)
   * 
   * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
   */
  public void actionPerformed(ActionEvent evt) {
    URLController c = new URLController();
    try {
      c.open(new URL("http://columba.sourceforge.net/index.php?option=com_content&task=view&id=138&Itemid=105"));
    }
    catch (MalformedURLException
           mue) {
    }
  }
}




Next
Previous
Clone Instance
2
Line Count
48
Source Line
16
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/ShowBugDatabaseAction.java

//The contents of this file are subject to the Mozilla Public License Version 1.1
//(the "License"); you may not use this file except in compliance with the 
//License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
//
//Software distributed under the License is distributed on an "AS IS" basis,
//WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
//for the specific language governing rights and
//limitations under the License.
//
//The Original Code is "The Columba Project"
//
//The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
//Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003. 
//
//All Rights Reserved.
package org.columba.core.gui.globalactions;

import java.awt.event.ActionEvent;
import java.net.MalformedURLException;
import java.net.URL;
import org.columba.api.gui.frame.IFrameMediator;
import org.columba.core.gui.action.AbstractColumbaAction;
import org.columba.core.gui.util.URLController;
import org.columba.core.resourceloader.GlobalResourceLoader;

/**
 * @author frd
 *
 * To change this generated comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class ShowBugDatabaseAction extends AbstractColumbaAction {
  /**
   * @param frameMediator
   * @param name
   * @param longDescription
   * @param actionCommand
   * @param small_icon
   * @param big_icon
   * @param mnemonic
   * @param keyStroke
   */
  public ShowBugDatabaseAction(IFrameMediator frameMediator) {
    super(frameMediator, GlobalResourceLoader.getString(null, null, "menu_help_bug"));
  }

  /* (non-Javadoc)
   * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
   */
  public void actionPerformed(ActionEvent evt) {
    URLController c = new URLController();
    try {
      c.open(new URL("http://columba.sourceforge.net/phpBB2/viewforum.php?f=15"));
    }
    catch (MalformedURLException
           mue) {
    }
  }
}




Next
Previous
Clone Instance
3
Line Count
37
Source Line
16
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/ShowFAQAction.java

//The contents of this file are subject to the Mozilla Public License Version 1.1
//(the "License"); you may not use this file except in compliance with the 
//License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
//
//Software distributed under the License is distributed on an "AS IS" basis,
//WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
//for the specific language governing rights and
//limitations under the License.
//
//The Original Code is "The Columba Project"
//
//The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
//Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003. 
//
//All Rights Reserved.
package org.columba.core.gui.globalactions;

import java.awt.event.ActionEvent;
import java.net.MalformedURLException;
import java.net.URL;
import org.columba.api.gui.frame.IFrameMediator;
import org.columba.core.gui.action.AbstractColumbaAction;
import org.columba.core.gui.util.URLController;
import org.columba.core.resourceloader.GlobalResourceLoader;

/**
 * @author frd
 *
 * To change this generated comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class ShowFAQAction extends AbstractColumbaAction {
  public ShowFAQAction(IFrameMediator frameMediator) {
    super(frameMediator, GlobalResourceLoader.getString(null, null, "menu_help_faq"));
  }

  /* (non-Javadoc)
   * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
   */
  public void actionPerformed(ActionEvent evt) {
    URLController c = new URLController();
    try {
      c.open(new URL("http://columba.sourceforge.net/index.php?option=com_content&task=section&id=3&Itemid=40"));
    }
    catch (MalformedURLException
           mue) {
    }
  }
}




First
Previous
Clone Instance
4
Line Count
37
Source Line
16
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/core/src/main/java/org/columba/core/gui/globalactions/ShowProjectPageAction.java

//The contents of this file are subject to the Mozilla Public License Version 1.1
//(the "License"); you may not use this file except in compliance with the 
//License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
//
//Software distributed under the License is distributed on an "AS IS" basis,
//WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
//for the specific language governing rights and
//limitations under the License.
//
//The Original Code is "The Columba Project"
//
//The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
//Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003. 
//
//All Rights Reserved.
package org.columba.core.gui.globalactions;

import java.awt.event.ActionEvent;
import java.net.MalformedURLException;
import java.net.URL;
import org.columba.api.gui.frame.IFrameMediator;
import org.columba.core.gui.action.AbstractColumbaAction;
import org.columba.core.gui.util.URLController;
import org.columba.core.resourceloader.GlobalResourceLoader;

/**
 * @author frd
 *
 * To change this generated comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class ShowProjectPageAction extends AbstractColumbaAction {
  public ShowProjectPageAction(IFrameMediator frameMediator) {
    super(frameMediator, GlobalResourceLoader.getString(null, null, "menu_help_sourceforge"));
  }

  /* (non-Javadoc)
   * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
   */
  public void actionPerformed(ActionEvent evt) {
    URLController c = new URLController();
    try {
      c.open(new URL("http://www.sourceforge.net/projects/columba"));
    }
    catch (MalformedURLException
           mue) {
    }
  }
}




Clone AbstractionParameter Count: 3Parameter Bindings

// The contents of this file are subject to the Mozilla Public License Version
// 1.1
//(the "License"); you may not use this file except in compliance with the
//The contents of this file are subject to the Mozilla Public License Version 1.1
//(the "License"); you may not use this file except in compliance with the 
//License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
//
//Software distributed under the License is distributed on an "AS IS" basis,
//WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
//WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
//for the specific language governing rights and
//limitations under the License.
//
//The Original Code is "The Columba Project"
//
//The Initial Developers of the Original Code are Frederik Dietz and Timo
// Stich.
//Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
//The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
//Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003. 
//
//All Rights Reserved.
package org.columba.core.gui.globalactions;

import java.awt.event.ActionEvent;
import java.net.MalformedURLException;
import java.net.URL;
import org.columba.api.gui.frame.IFrameMediator;
import org.columba.core.gui.action.AbstractColumbaAction;
import org.columba.core.gui.util.URLController;
import org.columba.core.resourceloader.GlobalResourceLoader;

/**
 * @author frd
 *
 * To change this generated comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class [[#variablef319ba0]]extends AbstractColumbaAction {
  /**
       * @param frameMediator
       * @param name
       * @param longDescription
       * @param actionCommand
       * @param small_icon
       * @param big_icon
       * @param mnemonic
       * @param keyStroke
       */
  public [[#variablef319ba0]](IFrameMediator frameMediator) {
    super(frameMediator, GlobalResourceLoader.getString(null, null,  [[#variablef319b20]]));
  }

  /*
           * (non-Javadoc)
           * 
           * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
           */
  /* (non-Javadoc)
       * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
       */
  public void actionPerformed(ActionEvent evt) {
    URLController c = new URLController();
    try {
      c.open(new URL( [[#variablef319a40]]));
    }
    catch (MalformedURLException
           mue) {
    }
  }
}


 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#f319ba0]]
DonateAction 
12[[#f319ba0]]
ShowBugDatabaseAction 
13[[#f319ba0]]
ShowFAQAction 
14[[#f319ba0]]
ShowProjectPageAction 
21[[#f319b20]]
"menu_help_donate" 
22[[#f319b20]]
"menu_help_bug" 
23[[#f319b20]]
"menu_help_faq" 
24[[#f319b20]]
"menu_help_sourceforge" 
31[[#f319a40]]
"http://columba.sourceforge.net/index.php?option=com_content&task=view&id=138&Itemid=105" 
32[[#f319a40]]
"http://columba.sourceforge.net/phpBB2/viewforum.php?f=15" 
33[[#f319a40]]
"http://columba.sourceforge.net/index.php?option=com_content&task=section&id=3&Itemid=40" 
34[[#f319a40]]
"http://www.sourceforge.net/projects/columba"