01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.aspectwerkz.aspect.container;
05:
06: /**
07: * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
08: */
09: class Artifact {
10: public Artifact(String className, byte[] bytecode) {
11: this .className = className;
12: this .bytecode = bytecode;
13: }
14:
15: public byte[] bytecode;
16: public String className;
17: }
|