All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.actelion.research.util.graph.complete.AMemorizedObject Maven / Gradle / Ivy

There is a newer version: 2024.12.1
Show newest version
package com.actelion.research.util.graph.complete;

/**
 * 
 * 
 * AMemorizedObject
 * 

Copyright: Actelion Ltd., Inc. All Rights Reserved * This software is the proprietary information of Actelion Pharmaceuticals, Ltd. * Use is subject to license terms.

* @author Modest von Korff * @version 1.0 * Sep 28, 2012 MvK: Start implementation */ public abstract class AMemorizedObject { private int positionInContainer; /** * Has to be a deep copy * @param m */ abstract public void copyIntoThis(AMemorizedObject m); abstract public void reset(); protected int getPositionInContainer() { return positionInContainer; } protected void setPositionInContainer(int positionInContainer) { this.positionInContainer = positionInContainer; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy