Package eu.simuline.octave.type
Interface OctaveObject
-
- All Known Implementing Classes:
AbstractGenericMatrix
,AbstractObjectMatrix
,OctaveBoolean
,OctaveCell
,OctaveComplex
,OctaveDouble
,OctaveFake
,OctaveFunctionHandle
,OctaveInt
,OctaveLong
,OctaveSparseBoolean
,OctaveString
,OctaveStruct
public interface OctaveObject
Common interface for the octave objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OctaveObject
shallowCopy()
Make a shallow copy of this object.
-
-
-
Method Detail
-
shallowCopy
OctaveObject shallowCopy()
Make a shallow copy of this object. In general when anOctaveObject
is returned from a getter, e.g. onOctaveStruct
orOctaveStruct
, a shallow copy is returned in order to follow the way octave behaves. This method is used to make that copy.- Returns:
- a shallow copy of this
-
-