blob: 398e97a02569fdc3717291be9d0bf8aabacd01d4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.html.core.internal.contentmodel.chtml;
import org.eclipse.wst.xml.core.internal.contentmodel.CMNamedNodeMap;
/**
* H[1-6].
*/
final class HedHeading extends HedInlineContainer {
/**
*/
public HedHeading(String elementName, ElementCollection collection) {
super(elementName, collection);
correctionType = CORRECT_EMPTY;
layoutType = LAYOUT_BLOCK;
}
/**
* Create all attribute declarations.
* This method is called once in the constructor of the super class.
* The <code>H1</code> element may have the following attributes:
* <table>
* <tbody>
* <tr>
* <th>NAME</th><th>TYPE</th><th>USAGE</th><th>DEFAULT (INITIAL) VALUE</th><th>MEMO</th>
* </tr>
* <tr>
* <td>%attrs;</td><td>-</td><td>-</td><td>-</td><td>-</td>
* </tr>
* <tr>
* <td>%align;</td><td>-</td><td>-</td><td>-</td><td>-</td>
* </tr>
* </tbody>
* </table>
* <p><b>%align;</b> means <code>align (left|center|right|justify) #IMPLIED</code>.
* Unfortunately, this <code>align</code> is different from one in
* <code>IMG</code> or <code>TABLE</code>. So, the attribute declaration
* of <code>align</code> should be localy created and it shouldn't be registered
* in a <code>HCMDocImpl</code> instance.</p>
* <p>However, %align is used in sevaral times. I wouldn't write same code
* in many times. So, I add a new utility method into <code>CMUtil</code>
* to create the attribute declaration.</p>
* <br>
*/
protected void createAttributeDeclarations() {
if (attributes != null)
return; // already created.
if (attributeCollection == null)
return; // fatal
attributes = new CMNamedNodeMapImpl();
// %attrs;
attributeCollection.getAttrs(attributes);
// align
HTMLAttrDeclImpl attr = AttributeCollection.createAlignForParagraph();
if (attr != null)
attributes.putNamedItem(CHTMLNamespace.ATTR_NAME_ALIGN, attr);
}
/**
*/
public CMNamedNodeMap getProhibitedAncestors() {
if (prohibitedAncestors != null)
return prohibitedAncestors;
String[] names = {CHTMLNamespace.ElementName.DIR, CHTMLNamespace.ElementName.MENU};
prohibitedAncestors = elementCollection.getDeclarations(names);
return prohibitedAncestors;
}
}