Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
28 | 2 | 3 | 0.987 | class_member_list[3] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 28 | 104 | libraries/joomla/html/pane.php |
2 | 28 | 201 | libraries/joomla/html/pane.php |
| ||||
/** * Constructor * * @param array $params Associative array of values */ function __construct($params= array()) { static $loaded = FALSE; parent:: __construct($params); if (!$loaded) { $this->_loadBehavior($params); $loaded= TRUE; } } /** * Creates a pane and creates the javascript object for it * * @param string The pane identifier */ public function startPane($id) { return '<dl class="tabs" id="' . $id . '">'; } /** * Ends the pane */ public function endPane() { return "</dl>"; } |
| ||||
/** * Constructor * * @param int useCookies, if set to 1 cookie will hold last used tab between page refreshes */ function __construct($params= array()) { static $loaded = FALSE; parent:: __construct($params); if (!$loaded) { $this->_loadBehavior($params); $loaded= TRUE; } } /** * Creates a pane and creates the javascript object for it * * @param string The pane identifier */ public function startPane($id) { return '<div id="' . $id . '" class="pane-sliders">'; } /** * Ends the pane */ public function endPane() { return '</div>'; } |
| |||
/** * Constructor * * @param array $params Associative array of values */ /** * Constructor * * @param int useCookies, if set to 1 cookie will hold last used tab between page refreshes */ function __construct($params=array()) { static $loaded = FALSE; parent:: __construct($params); if (!$loaded) { $this->_loadBehavior($params); $loaded=TRUE; } } /** * Creates a pane and creates the javascript object for it * * @param string The pane identifier */ public function startPane($id) { return [[#variable46d07b80]] . $id . [[#variable3eb31180]]; } /** * Ends the pane */ public function endPane() { return [[#variable3eb31120]]; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#46d07b80]] | '<dl class="tabs" id="' |
1 | 2 | [[#46d07b80]] | '<div id="' |
2 | 1 | [[#3eb31180]] | '">' |
2 | 2 | [[#3eb31180]] | '" class="pane-sliders">' |
3 | 1 | [[#3eb31120]] | "</dl>" |
3 | 2 | [[#3eb31120]] | '</div>' |