blob: e3c8fa0919c376d693f12dae826aa9cbb562da60 [file] [log] [blame]
Carl Shapiro1fb86202011-06-27 17:43:13 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "dex_file.h"
4#include "heap.h"
5#include "globals.h"
6#include "logging.h"
7#include "object.h"
8#include "raw_dex_file.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -07009
10namespace art {
11
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070012void DexFile::Init(ObjectArray* strings, ObjectArray* classes, ObjectArray* methods, ObjectArray* fields) {
13 Set(kStrings, strings);
14 Set(kClasses, classes);
15 Set(kMethods, methods);
16 Set(kFields, fields);
Carl Shapiro1fb86202011-06-27 17:43:13 -070017}
18
Carl Shapiro1fb86202011-06-27 17:43:13 -070019} // namespace art