Tagged Questions
The cloning tag has no wiki summary.
15
votes
5answers
671 views
Why is cloning (in .NET) so difficult?
In the past I had the need to clone objects, only to find that they don't implement a Clone() method, forcing me to do it by hand (create a new instance and copy all properties from the original to ...
12
votes
7answers
3k views
How to properly override clone method?
I need to implement a deep clone in one of my objects which has no superclass.
What is the best way to handle the checked CloneNotSupportedException thrown by the superclass (which is Object)?
A ...
7
votes
4answers
376 views
Deep Cloning of Java objects (Not beans)
The project that I am currently working on has lot of objects that are serialized in order to get a deep copy of the the existing object. This works fine untill we have multiple calls at runtime in ...
5
votes
2answers
175 views
Is there a much better way to create deep and shallow clones in C#?
I have been creating object for a project and there are some instances that I have to create a deep copy for this objects I have come up with the use of a built in function for C# which is ...
5
votes
3answers
1k views
Cloning Lua state
Folks, is there a way to clone a Lua state?
In my game application the initialization procedure of the Lua virtual machine is pretty heavy(about 1 sec, since many scripts are loaded at once). I have ...
4
votes
2answers
117 views
C# Cloning- working with nonserializable data types
I've hit a bit of a stumbling block in my quest to implement object cloning in my game engine.
My goal is to have a cloning system that I don't have to maintain on a class by class basis, unless the ...
4
votes
4answers
1k views
how to deep copy a class without marking it as serializable
I came across many questions on deep copy but non of them helped me
I have a class say
class A
{
...
public List<B> ListB;
....
}
where B is again another class which inturn may ...
4
votes
6answers
2k views
.Net Deep cloning - what is the best way to do that?
I need to perform deep cloning on my complex object model. What do you think is the best way to do that in .Net?
I thought about serializing / Deserializing
no need to mention that MemberwiseClone is ...
3
votes
1answer
473 views
Spring: Create new instance of bean for each call of get method
I have next situation:
Connection manager should have each time one object of ConnectionServer and new objects of DataBean
So, I have created these beans and configured out it spring xml.
<?xml ...
3
votes
4answers
261 views
Cloning vs. Instanciating a new class
Is cloning good practice in this case? How to do it better?
public ModelCollection startParsing() {
return parseFeed(new ModelSpecialEntry);
}
public ModelCollection parseFeed(ModelEntry ...
3
votes
4answers
243 views
Implementing clone on a LinkedList
I am trying to implement a clone() method on a DoubleLinkedList. Now, the problem is that implementing it by "the convention" is a lot more troublesome than just creating a new DoubleLinkedList and ...
2
votes
1answer
63 views
Copying objects in java
I want to perform a deep copy on an object, does the clone function work to that extent, or do I have to create a function to physically copy it, and return a pointer to it? That is, I want
Board ...
2
votes
4answers
209 views
Deep cloning an object
I am using the function from Code project to deep clone my objects
http://www.codeproject.com/KB/tips/SerializedObjectCloner.aspx?msg=3984032#xx3984032xx
however for performance sensitive ...
2
votes
1answer
572 views
C# Clone System.Data.Entity.DynamicProxies to the actual (non proxied) class?
I'm trying to figure out how to clone or convert a System.Data.Entity.DynamicProxies into it's actual class. Eg:
System.Data.Entity.DynamicProxies.Currency_F4008E27DE_etc is the proxy class
...
2
votes
2answers
95 views
JQuery: Transferring Behaviors to Cloned Objects
I'm trying to quickly make copies of a class by binding the clone() method to the doubleclick event. My code, so far is:
<style type="text/css">
.draggable { float:left; clear: both; }
...
2
votes
6answers
282 views
How can a derived C++ class clone itself via a base pointer?
Here's what I'm trying to do (this code doesn't work):
class Base
{
virtual Base *clone() { return new Base(this); }
virtual void ID() { printf("BASE");
};
class Derived : publc Base
{
...
2
votes
1answer
29 views
Is it right to move all responsibility for cloning objects to user of a library?
I'm not that knowledgeable in this matter so I decided to ask here. Let's say we have some 'library' in Ruby (or any other pass by reference scripting language):
class Moo
attr_accessor :bar
...
2
votes
2answers
184 views
Jquery click bindings are not working correctly when binding multiple copies
I seem to have an issue when creating copies of a template and tying the .click() method to them properly. Take the following javascript for example:
function TestMethod() {
var test = Array();
...
2
votes
1answer
145 views
Taking a snapshot (cloning) of a project using Linq 2 Sql
I have a Project entity with several child tables, eg ProjectAwards ProjectTeamMember
I would like to copy the data from Project (and child tables) into a new Project record and update the Project ...
2
votes
2answers
526 views
How to achieve independant cloned TADODataSet?
The scenerios is like this:
We have some SQL table. We are perfroming an SQL query on this table and we have results in TADOQuery object.
var
qryOryginal, qryClone: TADOQuery;
begin
//setup all ...
2
votes
3answers
551 views
Is it possible to copy/clone HttpContext of a web request
What's the easiest way to clone current request's HttpContext instance?
I'm developing an app in Asp.net MVC v1. I upgraded the regular PartialView capabilities to actually have sub-controllers that ...
1
vote
2answers
61 views
javascript: cloning an object and its nodes
I couldn't seem to find quite what I'm looking for in any other question. I am wondering if there is a way to clone an object and its DOM nodes. I have tried:
newObj = jQuery.extend(true, {}, ...
1
vote
1answer
28 views
How to clone touchevents with jQuery?
I kind of need some help with clone() in jQuery.
So, the thing is this: I'm doing some kind of drag&drop&sort that will work on touch devices. Everything is good except that when i clone an ...
1
vote
3answers
107 views
AS 3 | Cloning Png image data
I need to clone .png image data loaded from server in AS3, so that I am not required to load same data again and again from server.
After a search on cloning image data in AS3 I was able to find ...
1
vote
1answer
81 views
How do I clone an ancestor in c#?
I need a semi-shallow copy of an object. Under my original design I used MemberwiseClone to catch all the simple stuff and then I specifically copied the classes to the extent that they needed to be ...
1
vote
2answers
63 views
Unable to understand clone
I have a simple program to clone a object , I googled the error "Exception in thread "main" java.lang.CloneNotSupportedException:" but need your help to understand the error, why am I not able to get ...
1
vote
1answer
116 views
Git - Few git repos clones and what not (PHP - framework Lithium, ORM Doctrine 2)
I'm fairly new to git (vcs in general) so I need help with this next case.
I want to start working on a new project, which will be built using php lithium framework, and doctrine 2.
Case:
I have ...
1
vote
3answers
100 views
Unable to access dom element using identifier after successfully cloning and appending it
I prepare a clone of a template div, assign it a dynamic ID and append it to DOM, like this:-
var chat_window_clone_obj = $('div#chat_window_template').clone();
cloned_element_id = ...
1
vote
3answers
374 views
vs ISerializable
I have extension method
public static T DeepClone<T>(this T source) where T : ISerializable
{
..
}
When I added "where T : ISerializable" I get error on all classes that uses DeepClone() ...
1
vote
3answers
365 views
How to clone an inherited object?
I've got a Tile class with this method:
public object Clone()
{
return MemberwiseClone();
}
And another class Checker that inherits from Tile.
I also have a Board class that is ...
1
vote
6answers
275 views
How to clone an Object you dont know the type of?
its easier to explain in code so here
Object anObj;
anObj = new MyObj();
anObj = new Rectangle();
anObj.clone();//this doesnt exist because its on the root Object class
what can i use instead of ...
1
vote
2answers
137 views
Which is faster: Cloning or using Streams?
In Java, which is faster:
Cloning an Object, then passing it to multiple listeners assuming the cloned object contains nothing more complicated than nested arrays, primitives and Strings
Using ...
1
vote
3answers
213 views
Faster way to clone
I am trying to optimize a piece of code that clones an object:
#region ICloneable
public object Clone()
{
MemoryStream buffer = new MemoryStream();
BinaryFormatter formatter = new ...
1
vote
5answers
191 views
LinkedList insert tied to inserted object
I have code that looks like this:
public class Polynomial {
List<Term> term = new LinkedList<Term>();
and it seems that whenever I do something like term.add(anotherTerm), with ...
1
vote
0answers
121 views
WPF - error while cloning objects and putting them into XPS document
Here's the bottom line: I'm trying to avoid using RDLC/SSRS and instead create XPS files from my XAML.
I've combined pieces of code from various articles here and I am (1) cloning the XAML objects I ...
1
vote
4answers
1k views
Cloning a TStringGrid Component
Dear all,
I am starting to learn Delphi. So I decided to write an application like MS Excel from scratch. In a new Form1, I did put a TPageControl component containing only 1 page. In that page, I ...
1
vote
1answer
269 views
Whats the purpose of Cloning a Repository in Mercurial?
I a xampp setup for php.
I have created a new repository at D:/xampp/htdocs/cart and i am using Mercurial along with Netbeans.
I am working on a locally and a lone developer.
The cart is installed ...
0
votes
0answers
33 views
On Jenkins only one of two git based job work
I have two jobs on my Jenkins server. Both are based on git but only oneworks and I don't know why.
Job 1
The first one works with a Github repository. Configuration is as follows :
Repository ...
0
votes
2answers
61 views
More efficient jquery cloning
So Im using jquery to clone a div so I can keep an input array dynamic in size. Its working fine but I can't help looking at it and thinking that adding the class before the clone so I can remove the ...
0
votes
0answers
41 views
Is jQuery.extend safe from circular reference?
Is jQuery.extend safe from circular reference ?
How can one avoid circular reference in Javascript (while cloning or checking recursively) ? Just checking for the existence of current target in its ...
0
votes
1answer
122 views
C++ synchronization and exception handling in cross threads
I am using boost library for threading and synchronization in my application.
First of all I must say exceptions within threads on synchronization is compilitey new thing for me.
In any case below ...
0
votes
2answers
35 views
cloning a div complete with events object intact then renaming the id removes the source div
I'm trying to clone a div with content, form elements and attached events.Once I clone the div I want to rename it. The problem is when I rename the div that i've cloned the source div is also ...
0
votes
0answers
68 views
duplicate xml dom objects in jquery
I want to copy/clone 2 xml dom objects - one into another.
Sorry if it is duplicate question... I've already tried
What is the most efficient way to clone a JavaScript object?
But jquery throws ...
0
votes
1answer
30 views
Copy property values by mapping property names
I have two LINQ table objects calls Orders and ImportedOrders which have exact the same properties but ImportedOrders has one more property. After import an Order gets an ImportedOrder and so I have ...
0
votes
2answers
91 views
How to write a javascript clone function that can copy added object methods?
I have a javascript object cloning question. I'd like to be able to clone object methods that have been altered from those defined by the object prototype, or added to the object after instantiation. ...
0
votes
1answer
65 views
Clone an Object that I can't add ICloneable to
I am trying to create a shallow copy (new instance) of an object, without manually setting each field. This object is not a type I have the ability to modify, so I cannot go into the object and ...
0
votes
0answers
388 views
Magento - Clone the “product.info” block into the sidebar and include the conditional product type data
What I Need: The "addtocart" and "product_type_data" blocks in the "right" section rather than in the "content"
What I've Tried: I've tried creating a new file for the block called sidebar.phtml and ...
0
votes
1answer
83 views
Android: Cloning class instance
I have to build an array of MyView instances (extends WebView). The only difference of each view is the content. So instead of recreating this each time I would like to create one MyView all other ...
0
votes
0answers
31 views
Jquery: Cloning a dynamic select with autocomplete easily
I have a great three-tier working autocomplete and then drop select. It starts with an autocomplete which then displays results based on select. Following the second-tier drop select a third-tier ...
0
votes
1answer
131 views
jQuery Cloning autocomplete Chain only chaining on first row
I have not found a solution to this and a new few set of eyes is needed to solve this issue. Basically you autocomplete search the vehicle and upon select a filter request is sent with json filling ...