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:
Diffstat (limited to 'bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/basic/CMDataTypeImpl.java')
-rw-r--r--bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/basic/CMDataTypeImpl.java73
1 files changed, 0 insertions, 73 deletions
diff --git a/bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/basic/CMDataTypeImpl.java b/bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/basic/CMDataTypeImpl.java
deleted file mode 100644
index a004626c01..0000000000
--- a/bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/basic/CMDataTypeImpl.java
+++ /dev/null
@@ -1,73 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2002, 2006 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
- * Jens Lukowski/Innoopract - initial renaming/restructuring
- *
- *******************************************************************************/
-package org.eclipse.wst.xml.core.internal.contentmodel.basic;
-
-import org.eclipse.wst.xml.core.internal.contentmodel.CMDataType;
-import org.eclipse.wst.xml.core.internal.contentmodel.CMNode;
-
-public class CMDataTypeImpl extends CMNodeImpl implements CMDataType
-{
- protected String dataTypeName;
- protected String[] enumeratedValues;
- protected String instanceValue;
-
- public CMDataTypeImpl(String dataTypeName, String instanceValue)
- {
- this.dataTypeName = dataTypeName;
- this.instanceValue = instanceValue;
- this.enumeratedValues = new String[0];
- }
-
- public CMDataTypeImpl(String dataTypeName, String[] enumeratedValues)
- {
- this.dataTypeName = dataTypeName;
- this.enumeratedValues = enumeratedValues;
- this.instanceValue = enumeratedValues[0];
- }
-
-
- public int getNodeType()
- {
- return CMNode.DATA_TYPE;
- }
-
- public String getNodeName()
- {
- return getDataTypeName();
- }
-
- public String getDataTypeName()
- {
- return dataTypeName;
- }
-
- public int getImpliedValueKind()
- {
- return IMPLIED_VALUE_NONE;
- }
-
- public String getImpliedValue()
- {
- return null;
- }
-
- public String[] getEnumeratedValues()
- {
- return enumeratedValues;
- }
-
- public String generateInstanceValue()
- {
- return instanceValue;
- }
-}

Back to the top