DOC

io.github.kostaskougios : cloning

Maven & Gradle

Mar 16, 2020
10 usages
578 stars

cloning · The cloning library is a small, open source (Apache licensed) Java library which deep-clones objects. The objects do not have to implement the Cloneable interface. Effectively, this library can clone ANY Java object. It can be used i.e. in cache implementations, if you don't want the cached object to be modified or whenever you want to create a deep copy of an object.

Table Of Contents

Latest Version

Download io.github.kostaskougios : cloning Javadoc & API Documentation - Latest Versions:

All Versions

Download io.github.kostaskougios : cloning Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.10.x

How to open Javadoc JAR file in web browser

  1. Rename the file cloning-1.10.3-javadoc.jar to cloning-1.10.3-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder cloning-1.10.3-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "cloning-1.10.3-sources.jar" -d "cloning-1.10.3-javadoc" -subpackages 

Advertisement