Source code: Clazz/jq_DontAlign.java
1 // jq_DontAlign.java, created Mon Apr 9 1:30:26 2001 by joewhaley
2 // Copyright (C) 2001-3 John Whaley <jwhaley@alum.mit.edu>
3 // Licensed under the terms of the GNU LGPL; see COPYING for details.
4 package Clazz;
5
6 import Bootstrap.PrimordialClassLoader;
7
8 /**
9 * This interface is used as a marker to signify that the fields in the
10 * class should not be aligned. This is necessary if the layout must
11 * match another data structure exactly, for example: in
12 * Scheduler.jq_RegisterState.
13 *
14 * @see Scheduler.jq_RegisterState
15 * @author John Whaley <jwhaley@alum.mit.edu>
16 * @version $Id: jq_DontAlign.java,v 1.5 2003/05/12 10:05:12 joewhaley Exp $
17 */
18 public interface jq_DontAlign {
19
20 jq_Class _class = (jq_Class)PrimordialClassLoader.loader.getOrCreateBSType("LClazz/jq_DontAlign;");
21 }