comparison truffle/com.oracle.truffle.api.object/src/com/oracle/truffle/api/object/LayoutFactory.java @ 22151:494bfe8a25ff

move LayoutBuilder to Layout.Builder
author Andreas Woess <andreas.woess@oracle.com>
date Mon, 14 Sep 2015 13:59:37 +0200
parents 9c8c0937da41
children 4eb6f179a326
comparison
equal deleted inserted replaced
22150:ac6dadffdf32 22151:494bfe8a25ff
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.api.object; 25 package com.oracle.truffle.api.object;
26 26
27 public interface LayoutFactory { 27 public interface LayoutFactory {
28 Layout createLayout(LayoutBuilder layoutBuilder); 28 Layout createLayout(Layout.Builder layoutBuilder);
29 29
30 Property createProperty(Object id, Location location); 30 Property createProperty(Object id, Location location);
31 31
32 Property createProperty(Object id, Location location, int flags); 32 Property createProperty(Object id, Location location, int flags);
33 33