KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > aspectwerkz > aspect > container > Artifact


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.aspectwerkz.aspect.container;
5
6 /**
7  * @author <a HREF="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
8  */

9 class Artifact {
10   public Artifact(String JavaDoc className, byte[] bytecode) {
11     this.className = className;
12     this.bytecode = bytecode;
13   }
14
15   public byte[] bytecode;
16   public String JavaDoc className;
17 }
18
19
Popular Tags