sub_arctic.style
Class style_resource_cell

java.lang.Object
  |
  +--sub_arctic.style.style_resource_cell

public class style_resource_cell
extends java.lang.Object

Simple helper class for linked list cell used in style hash tables. We basically keep a resource designator, an Object, and a link to the next cell. Note that we implement our own hash tables within styles so we can chain the searches through super-style tables efficiently and shortcut tables we have already searched.


Field Summary
 style_resource_desig desig
          Designator for the resource at this cell
 style_resource_cell next
          Link to the next cell
 java.lang.Object resource
          Resource Object at this cell
 
Constructor Summary
style_resource_cell()
          Default constructor that sets fields to null.
style_resource_cell(style_resource_desig des, java.lang.Object res, style_resource_cell nxt)
          Full constructor
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

desig

public style_resource_desig desig
Designator for the resource at this cell

resource

public java.lang.Object resource
Resource Object at this cell

next

public style_resource_cell next
Link to the next cell
Constructor Detail

style_resource_cell

public style_resource_cell(style_resource_desig des,
                           java.lang.Object res,
                           style_resource_cell nxt)
Full constructor

style_resource_cell

public style_resource_cell()
Default constructor that sets fields to null.