Interface IDartInternalObject
public interface IDartInternalObject
Basic interface for Dart objects.
-
Method Summary
Modifier and TypeMethodDescriptiongetAttribute
(String key) Retrieve an object attribute by name.Retrieve the map of objects attributes.int
Retrieve the object class id.boolean
isBase()
-
Method Details
-
getClassId
int getClassId()Retrieve the object class id. To determine the class name, useIDartAotSnapshotInfo.getClassIdNameMap()
.- Returns:
-
isBase
boolean isBase()- Returns:
-
getAttributes
Retrieve the map of objects attributes.- Returns:
- unmodifiable map
-
getAttribute
Retrieve an object attribute by name.- Parameters:
key
-- Returns:
- an attribute or null
-