Package ptolemy.domains.sdf.optimize.lib
Class DummyFrame
- java.lang.Object
-
- ptolemy.domains.sdf.optimize.lib.DummyFrame
-
- All Implemented Interfaces:
java.lang.Cloneable
public class DummyFrame extends java.lang.Object implements java.lang.Cloneable
Class comments
A DummyFrame mimics a shared data object. It is used for testing the OptimizingSDFDirector. The shared data object holds an integer value.See
OptimizingSDFDirector
for more information.- Since:
- Ptolemy II 10.0
- Version:
- $Id$
- Author:
- Marc Geilen
- See Also:
OptimizingSDFDirector
- Pt.AcceptedRating:
- Red ()
- Pt.ProposedRating:
- Red (mgeilen)
-
-
Field Summary
Fields Modifier and Type Field Description int
value
Represents the value encapsulated by the shared data frame.
-
Constructor Summary
Constructors Constructor Description DummyFrame()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DummyFrame
clone()
Clone the DummyFrame.java.lang.String
toString()
Provides a string representation of the object.
-
-
-
Method Detail
-
toString
public java.lang.String toString()
Provides a string representation of the object.- Overrides:
toString
in classjava.lang.Object
- Returns:
- string representation of the object
-
clone
public DummyFrame clone()
Clone the DummyFrame.- Overrides:
clone
in classjava.lang.Object
- Returns:
- the cloned frame
-
-