The cloning library is a small, open source (Apache licensed) Java library which deep-clones objects. The objects don't have to implement the Cloneable interface. Effectively, this library can clone ANY Java object.

learn more… | top users | synonyms

-1
votes
0answers
27 views

Copy Text and Icon from JTextPane to Another JTextPane

I'm doing some chat application using JTextPane the application can receive ImageIcon and text. Screenshot: Here is some snippets of Send button: private void ...
1
vote
1answer
25 views

How to Replace an element with another element entirely with data and events?

I have cloned an element like this var myVar = null; myVar = $(someOtherVar).clone(true, true) Now I want to replace anotherVar entirely with myVar. How to do that? I tried ...
2
votes
2answers
60 views

Deep Copy of a Generic Type in Java

How does deep copies (clones) of generic types T, E work in Java? Is it possible? E oldItem; E newItem = olditem.clone(); // does not work
1
vote
2answers
62 views

Cloning/Copying an Object

I am creating a connect 4 game in Java and i'm trying to make a deep copy of a custom object (The game Board), then modify that copy and add it to a list as part of the mini max algorithm. This is ...
1
vote
2answers
193 views

Cloning An Object which contains many objects and lists C#

Hello there :) I'm having a problem when cloning an object that contains other objects and lists in winForm. I want to Clone an Object of Type Structure the classes are provided below first of all i ...
0
votes
0answers
36 views

Deepclone and crash when reload

I use Playframework 2.1 and Java Deep-cloning library, but when I use deepClone function and then change something in code and reload the page, it throws java.lang.IllegalArgumentException: Can ...
2
votes
1answer
48 views

nhibernate create with previous state

I have something similar to this var productList = order.Products.TolIst(); And I loop through the productList and update each product using session.SaveOrUpdate(product); But the problem is, ...
1
vote
1answer
60 views

Object Cloning Vs Serialization

My goal is to restart InnoDB transaction the right way if Deadlock found, and sometimes, data in an object changes upon execution and I need to roll it back to its former state. For that I might use ...
2
votes
1answer
82 views

Copying a bitarray in a larger one (right justified)

I have to create a new bitarray larger of an existing one (one element more at the beginning) and copy it at the end of the new bitarray. I have done this so far, but looks pretty ugly: BitArray ...
1
vote
1answer
459 views

How to do mapping for deep (or nested) objects properties using Dozer?

I am having a requirement to map properties of an object which is having nested objects ( deep) to a DTO object. Actually I want to Deflate the complex object to simple DTO with all the properties of ...
1
vote
3answers
249 views

Why can't I do forEach on a Javascript deep cloned array?

This gives me an alert for the numbers 1, 2, and 3. [1,2,3].forEach(alert); This gives me an error: $.extend(true, {}, [1,2,3]).forEach(alert); The error: TypeError: Object #<Object> has ...
4
votes
1answer
413 views

DataTable.Copy() or DeepClone. Which one to choose?

I have a confusion Scenario: I want to create a copy of a DataTable to be added to another DataSet. There are 2 ways to do it (AFAIK): 1. Make a Copy using DataTable.Copy() 2. Make a Deep Clone ...
0
votes
0answers
59 views

Create Clone Without Effecting Results of Original Object

I have a function that when selecting an option, returns results. I want to be able to clone that function and have the ability to return another set of results, without adding the new results to the ...
1
vote
0answers
125 views

Error while adding stateless jsf classes to a JSF project

Sometimes while running a JSF project on Glassfish 3.0.1, I get this error which also brings the server down. Can anybody explain how to fix this? Actually I am trying to add Stateless JSF ...
0
votes
1answer
186 views

Clone Entire JavaScript ScriptEngine

I need to somehow deep clone the entire set of bindings of my ScriptEngine object. I need this because I must be able to restore the values of the entire ScriptEngine bindings to some previous point. ...
0
votes
1answer
311 views

jQuery clone of JSON object returns undefined

According to the docs, jQuery.extend() is a solution to execute both a deep and shallow copy of a JSON object. However, when I use this, I get an undefined object error. My ajax request function and ...
0
votes
1answer
201 views

Problems with copying an entity objects with its association

I am using MVC with Entity Framework Model-First in my project I have a Entity GoalCard and this entity is associated to another entity SelectedQuestion The association look like this: GoalCard ...
1
vote
2answers
61 views

How to “connect” cloned element so the changes applied to original are applied to cloned element as well?

I have this situation (it is very simplified for the sake of this question): var original_div = $('<div></div>'); var clone_div = original_div.clone(); original_div.width(300); Is there ...
1
vote
3answers
612 views

Deep Clone objects in C# [closed]

I was playing with different techniques for deep object cloning in C#, and finally came to pretty elegant solution that uses reflection and is applicable for non-serializable types. I am just ...
0
votes
1answer
62 views

Delphi Prism : Is this deepcopy or shallowcopy?

Take a look at the following code: method TMakerRect.Clone: TMakerObject; var newRect:TMakerRect; begin newRect := new TMakerRect(bounds,myForm); newRect.Assign(Self); newRect.theBrushStyle ...
2
votes
2answers
181 views

How do I do a Java-deep copy of an object?

I have a class (Literal). I need to be able to keep an intact Literal instance in memory throughout my application, and have a copy of it which I can alter. I have used two ways to do this: class ...
2
votes
2answers
418 views

How can I deep copy an object of one object type to another object type that share an inheritance structure

I am currently building an object model for HL7 messages. Without diving into those, the basic structure that we have looks similar to this: Base Object Intermediary Object DeepMessage1 ...
0
votes
1answer
447 views

How to clone a generic list of instances of a class derived from an abstract class in C#?

I have a base class: abstract class Base and some derived classes: class Derived: Base, that all data members are in the base class. I have another generic list: List<Base> list. Now I want to ...
2
votes
1answer
129 views

Performant way to clone rather large subtree in database?

Currently I'm trying to performance-optimize a code in a Windows Forms .NET 2.0 application that does copy operations on hierarchical database objects. Here is an example structure: Each object in ...
6
votes
1answer
441 views

High Performance Cloning

I'm after a means of deep cloning an object graph in a perfomant way. I'm going to have multiple threads cloning a graph extremely quickly such that they can play with some state and throw away the ...
1
vote
1answer
164 views

Cloning assosiations with attached file

I have got an object wich I am using as a pattern. This objects has got a number of associations. One of those association is an attach. My object has many attaches. I can clone all, you know, db ...
5
votes
3answers
1k views

How to implement deep copy or clone of an object that has circular references?

I have such hierarchy: class Sphere; class Cube; class SpherePair; class Entity {}; class Cube : public Entity { public: list<Sphere*> spheres_; }; class Sphere : public Entity { public: ...
0
votes
3answers
724 views

how to create clone of an object which does not implement Cloneable

I have to clone an object which does not implement Cloneable interface how to do this. Actually in my project I am using JCChart .now my class extends MultiChart and I have to craete the deep copy of ...
1
vote
2answers
373 views

jQuery Clone Recursion

Why is this "copy"(click) wrong, it binds all the previous handlers as well: var add = function(element) { var ele = element.clone(true); $('.container').append(ele); $('.copy', ...
1
vote
0answers
206 views

Deepclone issue with child object need deep serializing

I've got an issue when implementing DeepClone by serialization/deserialization way. The fact: I want my class OwnDataset to have its deepclone instance, by 2 below common procedures - constructor and ...
3
votes
2answers
3k views

difference between DataContract attribute and Serializable attribute in .net

I am trying to create a deep clone of an object using the following method. public static T DeepClone<T>(this T target) { using (MemoryStream stream = new MemoryStream()) ...
0
votes
1answer
428 views

Clone a list of reference types that CANNOT implement ICloneable

Is there an easier/tidier way to deep clone a list of reference types that do not implement ICloneable. Currently have been looping through each object in the list like so: Dim myListCopy As New ...
3
votes
2answers
619 views

Deep cloning Moose object with attributes that are ArrayRef[Object] and Set::Object

I've got a Moose object: class My::Game { has 'players' => (isa => 'Set::Object', ...) has 'action_sequence' => (isa => 'ArrayRef[My::Game::Action]', ...) } Now I want to be able to ...
12
votes
2answers
3k views

How to deep clone objects containing an IList property using AutoMapper

I am trying to deep clone the following class using AutoMapper: public class MainData { public MainData() { Details = new List<Detail>(); } public int Id { get; private ...
0
votes
1answer
608 views

Copy a table to new window

I'm trying to open up a new browser window, and copy a table from the parent window into this new window. I'm using Prototype.js and this is the code I have: prog_window = window.open(); ...
3
votes
2answers
776 views

How can I clone FileStream type?

How can I clone FileStream type? The problem is that I using MagickNet.Image(inputStream) to get the image distentions before saving it, but it seems to closing the inputStream. So, I can send a ...
2
votes
2answers
818 views

LinkedHashMap<String,Object>.clone();

does the above command produce a deep copy of a LinkedHashMap's elements?
1
vote
3answers
3k views

Implementing the ICloneable Interface C#(Question on Deep Cloning)

I was looking at code that implemented the ICloneable interface for one of the classes. The class was as follows: public class TempClass { String[] names; String[] values; } A partial class ...
8
votes
8answers
8k views

I need to implement C# deep copy constructors with inheritance. What patterns are there to choose from?

I wish to implement a deepcopy of my classes hierarchy in C# public Class ParentObj : ICloneable { protected int myA; public virtual Object Clone () { ParentObj newObj ...
0
votes
1answer
101 views

Cloning WebService

Is there a way to clone WebService object in as3? The ObjectUtil method seems to throw an error. If not is there a way to cache wsdl and assign it to new WebService object so that constant loading of ...
15
votes
3answers
4k views

What's the best way to make a deep copy of a data structure in Perl?

Given a data structure (e.g. a hash of hashes), what's the clean/recommended way to make a deep copy for immediate use? Assume reasonable cases, where the data's not particularly large, no complicated ...
13
votes
3answers
2k views

Can I deep clone a c# object not tagged ICloneable or Serializable?

I have an object not written by myself that I need to clone in memory. The object is not tagged ICloneable or Serializable so deep cloning through the interface or serialization will not work. Is ...
5
votes
5answers
9k views

Deep cloning multidimensional arrays in Java…?

I have two multidimensional arrays (well actually they're only 2D) which have inferred size. How do I deep clone them? Here's what I have gotten so far: public foo(Character[][] original){ clone = ...