Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2011-04-13 21:07:44 +0000
committernitind2011-04-13 21:07:44 +0000
commit307411eebfc03c67999ca31dbcc66ac0b69aed76 (patch)
tree0a8ff85eb50bbecd653f25b15d4fa344ea313f61 /bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contentmodel/CtdDetails.java
parentb7417aea735c8f786f97ccb5716d5a09acead695 (diff)
downloadwebtools.sourceediting-201104132127.tar.gz
webtools.sourceediting-201104132127.tar.xz
webtools.sourceediting-201104132127.zip
This commit was manufactured by cvs2svn to create tag 'v201104132127'.v201104132127
Diffstat (limited to 'bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contentmodel/CtdDetails.java')
-rw-r--r--bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contentmodel/CtdDetails.java50
1 files changed, 0 insertions, 50 deletions
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contentmodel/CtdDetails.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contentmodel/CtdDetails.java
deleted file mode 100644
index 914d5db256..0000000000
--- a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/contentmodel/CtdDetails.java
+++ /dev/null
@@ -1,50 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010 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;
-
-import org.eclipse.wst.html.core.internal.provisional.HTML50Namespace;
-import org.eclipse.wst.xml.core.internal.contentmodel.CMElementDeclaration;
-import org.eclipse.wst.xml.core.internal.contentmodel.CMGroup;
-import org.eclipse.wst.xml.core.internal.contentmodel.CMNode;
-
-public class CtdDetails extends ComplexTypeDefinition {
-
- public CtdDetails(ElementCollection elementCollection) {
- super(elementCollection);
- primaryCandidateName = HTML50Namespace.ElementName.SUMMARY;
- }
-
- protected void createContent() {
- if (content != null)
- return; // already created.
- if (collection == null)
- return;
-
- content = new CMGroupImpl(CMGroup.SEQUENCE, 1, 1);
- // summary
- CMNode dec = collection.getNamedItem(HTML50Namespace.ElementName.SUMMARY);
- if (dec != null)
- content.appendChild(dec);
-
- CMGroupImpl group = new CMGroupImpl(CMGroup.CHOICE, 1, CMContentImpl.UNBOUNDED);
- content.appendChild(group);
- collection.getFlow(group);
- }
-
- public int getContentType() {
- return CMElementDeclaration.ELEMENT;
- }
-
- public String getTypeName() {
- return ComplexTypeDefinitionFactory.CTYPE_DETAILS_CONTAINER;
- }
-
-}

Back to the top