comparison truffle/com.oracle.truffle.api.object/src/com/oracle/truffle/api/object/Layout.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 494bfe8a25ff
children 567d324c306c
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.api.object; 25 package com.oracle.truffle.api.object;
26 26
27 import com.oracle.truffle.api.nodes.NodeUtil.FieldOffsetProvider;
28 import com.oracle.truffle.api.object.Shape.Allocator;
27 import java.util.EnumSet; 29 import java.util.EnumSet;
28 import java.util.ServiceLoader; 30 import java.util.ServiceLoader;
29
30 import com.oracle.truffle.api.nodes.NodeUtil.FieldOffsetProvider;
31 import com.oracle.truffle.api.object.Shape.Allocator;
32 31
33 /** 32 /**
34 * Describes layout and behavior of a {@link DynamicObject} subclass and is used to create shapes. 33 * Describes layout and behavior of a {@link DynamicObject} subclass and is used to create shapes.
35 * 34 *
36 * An object may change its shape but only to shapes of the same layout. 35 * An object may change its shape but only to shapes of the same layout.