Back to project page codemap.
The source code is released under:
GNU General Public License
If you think the Android project codemap listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hdweiss.codemap.data; /*w w w . j a v a 2 s.co m*/ import java.io.Serializable; import java.util.UUID; import com.hdweiss.codemap.view.workspace.fragments.CodeMapLink; public class SerializableLink implements Serializable { private static final long serialVersionUID = 1L; public UUID parent; public UUID child; public float offset; public SerializableLink(UUID parent, UUID child, float offset) { this.parent = parent; this.child = child; this.offset = offset; } public SerializableLink(CodeMapLink link) { this(link.parent.id, link.child.id, link.yOffset); } }