// Maker for "generic" inline areas
private class InlineMaker extends AbstractMaker {
public void startElement(Attributes attributes) {
InlineArea inl = new InlineArea();
transferForeignObjects(attributes, inl);
inl.setOffset(getAttributeAsInteger(attributes, "offset", 0));
setAreaAttributes(attributes, inl);
setTraits(attributes, inl, SUBSET_COMMON);
setTraits(attributes, inl, SUBSET_BOX);
setTraits(attributes, inl, SUBSET_COLOR);
Area parent = (Area)areaStack.peek();