/******************************************************************************* * Copyright (c) 2004, 2005 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 java.util.Arrays; import org.eclipse.wst.xml.core.internal.contentmodel.CMAttributeDeclaration; import org.eclipse.wst.xml.core.internal.contentmodel.CMContent; import org.eclipse.wst.xml.core.internal.contentmodel.CMDataType; import org.eclipse.wst.xml.core.internal.contentmodel.CMGroup; import org.eclipse.wst.xml.core.internal.contentmodel.CMNamedNodeMap; /** * PRE. */ final class HedPRE extends HedInlineContainer { /** * PRE element should keep spaces in its source. */ public HedPRE(ElementCollection collection) { super(CHTMLNamespace.ElementName.PRE, collection); // CORRECT_EMPTY - GROUP_COMPACT correctionType = CORRECT_EMPTY; keepSpaces = true; } /** * %attrs; * (width NUMBER #IMPLIED) ... should be defined locally. */ protected void createAttributeDeclarations() { if (attributes != null) return; // already created. if (attributeCollection == null) return; // fatal attributes = new CMNamedNodeMapImpl(); // %attrs; attributeCollection.getAttrs(attributes); // (width NUMBER #IMPLIED) ... should be defined locally. HTMLCMDataTypeImpl atype = new HTMLCMDataTypeImpl(CMDataType.NUMBER); HTMLAttrDeclImpl attr = new HTMLAttrDeclImpl(CHTMLNamespace.ATTR_NAME_WIDTH, atype, CMAttributeDeclaration.OPTIONAL); attributes.putNamedItem(CHTMLNamespace.ATTR_NAME_WIDTH, attr); } /** * Exclusion. * <code>PRE</code> has the exclusion. * It is <code>%pre.exclusion;</code>. * %pre.exclusion is: * IMG | OBJECT | APPLET | BIG | SMALL | SUB | SUP | FONT | BASEFONT */ public CMContent getExclusion() { if (exclusion != null) return exclusion; // already created. if (elementCollection == null) return null; exclusion = new CMGroupImpl(CMGroup.CHOICE, 1, 1); String[] names = {CHTMLNamespace.ElementName.IMG,}; elementCollection.getDeclarations(exclusion, Arrays.asList(names).iterator()); return exclusion; } /** */ public CMNamedNodeMap getProhibitedAncestors() { if (prohibitedAncestors != null) return prohibitedAncestors; String[] names = {CHTMLNamespace.ElementName.DIR, CHTMLNamespace.ElementName.MENU}; prohibitedAncestors = elementCollection.getDeclarations(names); return prohibitedAncestors; } }