aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/jsoup/nodes/Attribute.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-13 18:34:33 +0300
committerArtur Signell <artur@vaadin.com>2012-08-13 19:18:33 +0300
commite85d933b25cc3c5cc85eb7eb4b13b950fd8e1569 (patch)
tree9ab6f13f7188cab44bbd979b1cf620f15328a03f /src/org/jsoup/nodes/Attribute.java
parent14dd4d0b28c76eb994b181a4570f3adec53342e6 (diff)
downloadvaadin-framework-e85d933b25cc3c5cc85eb7eb4b13b950fd8e1569.tar.gz
vaadin-framework-e85d933b25cc3c5cc85eb7eb4b13b950fd8e1569.zip
Moved server files to a server src folder (#9299)
Diffstat (limited to 'src/org/jsoup/nodes/Attribute.java')
-rw-r--r--src/org/jsoup/nodes/Attribute.java131
1 files changed, 0 insertions, 131 deletions
diff --git a/src/org/jsoup/nodes/Attribute.java b/src/org/jsoup/nodes/Attribute.java
deleted file mode 100644
index 02eb29db83..0000000000
--- a/src/org/jsoup/nodes/Attribute.java
+++ /dev/null
@@ -1,131 +0,0 @@
-package org.jsoup.nodes;
-
-import org.jsoup.helper.Validate;
-
-import java.util.Map;
-
-/**
- A single key + value attribute. Keys are trimmed and normalised to lower-case.
-
- @author Jonathan Hedley, jonathan@hedley.net */
-public class Attribute implements Map.Entry<String, String>, Cloneable {
- private String key;
- private String value;
-
- /**
- * Create a new attribute from unencoded (raw) key and value.
- * @param key attribute key
- * @param value attribute value
- * @see #createFromEncoded
- */
- public Attribute(String key, String value) {
- Validate.notEmpty(key);
- Validate.notNull(value);
- this.key = key.trim().toLowerCase();
- this.value = value;
- }
-
- /**
- Get the attribute key.
- @return the attribute key
- */
- public String getKey() {
- return key;
- }
-
- /**
- Set the attribute key. Gets normalised as per the constructor method.
- @param key the new key; must not be null
- */
- public void setKey(String key) {
- Validate.notEmpty(key);
- this.key = key.trim().toLowerCase();
- }
-
- /**
- Get the attribute value.
- @return the attribute value
- */
- public String getValue() {
- return value;
- }
-
- /**
- Set the attribute value.
- @param value the new attribute value; must not be null
- */
- public String setValue(String value) {
- Validate.notNull(value);
- String old = this.value;
- this.value = value;
- return old;
- }
-
- /**
- Get the HTML representation of this attribute; e.g. {@code href="index.html"}.
- @return HTML
- */
- public String html() {
- return key + "=\"" + Entities.escape(value, (new Document("")).outputSettings()) + "\"";
- }
-
- protected void html(StringBuilder accum, Document.OutputSettings out) {
- accum
- .append(key)
- .append("=\"")
- .append(Entities.escape(value, out))
- .append("\"");
- }
-
- /**
- Get the string representation of this attribute, implemented as {@link #html()}.
- @return string
- */
- public String toString() {
- return html();
- }
-
- /**
- * Create a new Attribute from an unencoded key and a HTML attribute encoded value.
- * @param unencodedKey assumes the key is not encoded, as can be only run of simple \w chars.
- * @param encodedValue HTML attribute encoded value
- * @return attribute
- */
- public static Attribute createFromEncoded(String unencodedKey, String encodedValue) {
- String value = Entities.unescape(encodedValue, true);
- return new Attribute(unencodedKey, value);
- }
-
- protected boolean isDataAttribute() {
- return key.startsWith(Attributes.dataPrefix) && key.length() > Attributes.dataPrefix.length();
- }
-
- @Override
- public boolean equals(Object o) {
- if (this == o) return true;
- if (!(o instanceof Attribute)) return false;
-
- Attribute attribute = (Attribute) o;
-
- if (key != null ? !key.equals(attribute.key) : attribute.key != null) return false;
- if (value != null ? !value.equals(attribute.value) : attribute.value != null) return false;
-
- return true;
- }
-
- @Override
- public int hashCode() {
- int result = key != null ? key.hashCode() : 0;
- result = 31 * result + (value != null ? value.hashCode() : 0);
- return result;
- }
-
- @Override
- public Attribute clone() {
- try {
- return (Attribute) super.clone(); // only fields are immutable strings key and value, so no more deep copy required
- } catch (CloneNotSupportedException e) {
- throw new RuntimeException(e);
- }
- }
-}