summaryrefslogtreecommitdiff
path: root/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/DataNode.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/DataNode.java')
-rw-r--r--src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/DataNode.java298
1 files changed, 298 insertions, 0 deletions
diff --git a/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/DataNode.java b/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/DataNode.java
new file mode 100644
index 0000000..bd483b0
--- /dev/null
+++ b/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/DataNode.java
@@ -0,0 +1,298 @@
+/*
+* Copyright (C) 2012 The Android Open Source Project
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+package com.motorola.studio.android.model.manifest.dom;
+
+import java.util.List;
+import java.util.Map;
+
+import org.eclipse.core.runtime.IStatus;
+
+/**
+ * Class that represents a <data> node on AndroidManifest.xml file
+ */
+public class DataNode extends AndroidManifestNode implements IAndroidManifestProperties
+{
+ static
+ {
+ defaultProperties.add(PROP_HOST);
+ defaultProperties.add(PROP_MIMETYPE);
+ defaultProperties.add(PROP_PATH);
+ defaultProperties.add(PROP_PATHPATTERN);
+ defaultProperties.add(PROP_PATHPREFIX);
+ defaultProperties.add(PROP_PORT);
+ defaultProperties.add(PROP_SCHEME);
+ }
+
+ /**
+ * The host property
+ */
+ private String propHost = null;
+
+ /**
+ * The mimeType property
+ */
+ private String propMimeType = null;
+
+ /**
+ * The path property
+ */
+ private String propPath = null;
+
+ /**
+ * The pathPattern property
+ */
+ private String propPathPattern = null;
+
+ /**
+ * The pathPrefix property
+ */
+ private String propPathPrefix = null;
+
+ /**
+ * The port property
+ */
+ private String propPort = null;
+
+ /**
+ * The scheme property
+ */
+ private String propScheme = null;
+
+ /* (non-Javadoc)
+ * @see com.motorola.studio.android.model.manifest.dom.AndroidManifestNode#canContains(com.motorola.studio.android.model.manifest.dom.AndroidManifestNode.NodeType)
+ */
+ @Override
+ protected boolean canContains(NodeType nodeType)
+ {
+ // Always returns false. This node can not contain children.
+ return false;
+ }
+
+ /* (non-Javadoc)
+ * @see com.motorola.studio.android.model.manifest.dom.AndroidManifestNode#getNodeProperties()
+ */
+ @Override
+ public Map<String, String> getNodeProperties()
+ {
+ properties.clear();
+
+ if ((propHost != null) && (propHost.trim().length() > 0))
+ {
+ properties.put(PROP_HOST, propHost);
+ }
+
+ if ((propMimeType != null) && (propMimeType.trim().length() > 0))
+ {
+ properties.put(PROP_MIMETYPE, propMimeType);
+ }
+
+ if ((propPath != null) && (propPath.trim().length() > 0))
+ {
+ properties.put(PROP_PATH, propPath);
+ }
+
+ if ((propPathPattern != null) && (propPathPattern.trim().length() > 0))
+ {
+ properties.put(PROP_PATHPATTERN, propPathPattern);
+ }
+
+ if ((propPathPrefix != null) && (propPathPrefix.trim().length() > 0))
+ {
+ properties.put(PROP_PATHPREFIX, propPathPrefix);
+ }
+
+ if ((propPort != null) && (propPort.trim().length() > 0))
+ {
+ properties.put(PROP_PORT, propPort);
+ }
+
+ if ((propScheme != null) && (propScheme.trim().length() > 0))
+ {
+ properties.put(PROP_SCHEME, propScheme);
+ }
+
+ return properties;
+ }
+
+ /* (non-Javadoc)
+ * @see com.motorola.studio.android.model.manifest.dom.AndroidManifestNode#getNodeType()
+ */
+ @Override
+ public NodeType getNodeType()
+ {
+ return NodeType.Data;
+ }
+
+ /* (non-Javadoc)
+ * @see com.motorola.studio.android.model.manifest.dom.AndroidManifestNode#isNodeValid()
+ */
+ @Override
+ protected boolean isNodeValid()
+ {
+ // Every property is optional. One data element can have just one.
+ return !getNodeProperties().isEmpty();
+ }
+
+ /**
+ * Gets the host property value
+ *
+ * @return the host property value
+ */
+ public String getHost()
+ {
+ return propHost;
+ }
+
+ /**
+ * Sets the host property value. Set it to null to remove it.
+ *
+ * @param host the host property value
+ */
+ public void setHost(String host)
+ {
+ this.propHost = host;
+ }
+
+ /**
+ * Gets the mimeType property value
+ *
+ * @return the mimeType property value
+ */
+ public String getMimeType()
+ {
+ return propMimeType;
+ }
+
+ /**
+ * Sets the mimeType property value. Set it to null to remove it.
+ *
+ * @param mimeType the mimeType property value
+ */
+ public void setMimeType(String mimeType)
+ {
+ this.propMimeType = mimeType;
+ }
+
+ /**
+ * Gets the path property value
+ *
+ * @return the path property value
+ */
+ public String getPath()
+ {
+ return propPath;
+ }
+
+ /**
+ * Sets the path property value. Set it to null to remove it.
+ *
+ * @param path the path property value
+ */
+ public void setPath(String path)
+ {
+ this.propPath = path;
+ }
+
+ /**
+ * Gets the pathPattern property value
+ *
+ * @return the pathPattern property value
+ */
+ public String getPathPattern()
+ {
+ return propPathPattern;
+ }
+
+ /**
+ * Sets the pathPattern property value. Set it to null to remove it.
+ *
+ * @param pathPattern the pathPattern property value
+ */
+ public void setPathPattern(String pathPattern)
+ {
+ this.propPathPattern = pathPattern;
+ }
+
+ /**
+ * Gets the pathPrefix property value
+ *
+ * @return the pathPrefix property value
+ */
+ public String getPathPrefix()
+ {
+ return propPathPrefix;
+ }
+
+ /**
+ * Sets the pathPrefix property value. Set it to null to remove it.
+ *
+ * @param pathPrefix the pathPrefix property value
+ */
+ public void setPathPrefix(String pathPrefix)
+ {
+ this.propPathPrefix = pathPrefix;
+ }
+
+ /**
+ * Gets the port property value
+ *
+ * @return the port property value
+ */
+ public String getPort()
+ {
+ return propPort;
+ }
+
+ /**
+ * Sets the port property value. Set it to null to remove it.
+ *
+ * @param port the port property value
+ */
+ public void setPort(String port)
+ {
+ this.propPort = port;
+ }
+
+ /**
+ * Gets the scheme property value
+ *
+ * @return the scheme property value
+ */
+ public String getScheme()
+ {
+ return propScheme;
+ }
+
+ /**
+ * Sets the scheme property value. Set it to null to remove it.
+ *
+ * @param scheme the scheme property value
+ */
+ public void setScheme(String scheme)
+ {
+ this.propScheme = scheme;
+ }
+
+ /* (non-Javadoc)
+ * @see com.motorola.studio.android.model.manifest.dom.AndroidManifestNode#getSpecificNodeErrors()
+ */
+ @Override
+ protected List<IStatus> getSpecificNodeProblems()
+ {
+ return null;
+ }
+
+}