blob: 6860996ba5b477ce8cd570d809e22915948958d6 [file] [log] [blame]
nitind958d79a2004-11-23 19:23:00 +00001/*******************************************************************************
amywu923ee602007-04-10 18:32:07 +00002 * Copyright (c) 2004, 2005 IBM Corporation and others.
nitind958d79a2004-11-23 19:23:00 +00003 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
amywu923ee602007-04-10 18:32:07 +00007 *
nitind958d79a2004-11-23 19:23:00 +00008 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
david_williams56777022005-04-11 06:21:55 +000011package org.eclipse.wst.html.core.internal.contentmodel.chtml;
nitind958d79a2004-11-23 19:23:00 +000012
13
14
david_williamsc06c86f2005-03-18 18:23:41 +000015import org.eclipse.wst.xml.core.internal.contentmodel.CMNamedNodeMap;
nitind958d79a2004-11-23 19:23:00 +000016
17/**
18 * SSI:PRINTENV.
19 */
20final class HedSSIPrintenv extends HedSSIBase {
21
22 /**
23 */
24 public HedSSIPrintenv(ElementCollection collection) {
25 super(CHTMLNamespace.ElementName.SSI_PRINTENV, collection);
26 }
27
28 /**
29 */
30 protected void createAttributeDeclarations() {
31 if (attributes != null)
32 return; // already created.
33 if (attributeCollection == null)
34 return; // fatal
35
36 attributes = new CMNamedNodeMapImpl();
37 }
38
39 /**
40 * SSI:PRINTENV has no attributes. So, this method should
41 * always return <code>null</code>.
42 * Note: Since somebody doesn't expect null is returned, return the empty attribute
43 * like a custom tag which doesn't have attributes
44 */
45 public CMNamedNodeMap getAttributes() {
46 return super.getAttributes();
47 }
amywu923ee602007-04-10 18:32:07 +000048}