Package net.razorvine.pickle.objects
Class Reconstructor
- java.lang.Object
-
- net.razorvine.pickle.objects.Reconstructor
-
- All Implemented Interfaces:
IObjectConstructor
public class Reconstructor extends java.lang.Object implements IObjectConstructor
This constructor is called by the helper methods that pickle protocol 0 uses from the python copy_reg module to reconstruct c objects.
-
-
Constructor Summary
Constructors Constructor Description Reconstructor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectconstruct(java.lang.Object[] args)Create an object.
-
-
-
Method Detail
-
construct
public java.lang.Object construct(java.lang.Object[] args)
Description copied from interface:IObjectConstructorCreate an object. Use the given args as parameters for the constructor.- Specified by:
constructin interfaceIObjectConstructor
-
-