summaryrefslogtreecommitdiff
path: root/xml/dom-tests/tests/com/intellij/util/xml/MockGenericAttributeValue.java
blob: 15b7a0468d306c5ccde3347b637928201c54b687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * Copyright (c) 2000-2007 JetBrains s.r.o. All Rights Reserved.
 */
package com.intellij.util.xml;

import com.intellij.psi.xml.XmlAttribute;
import com.intellij.psi.xml.XmlAttributeValue;
import org.jetbrains.annotations.NotNull;

/**
 * @author peter
 */
public class MockGenericAttributeValue extends MockDomElement implements GenericAttributeValue<Object> {
  @Override
  public XmlAttribute getXmlAttribute() {
    throw new UnsupportedOperationException("Method getXmlAttribute is not yet implemented in " + getClass().getName());
  }

  @Override
  public XmlAttributeValue getXmlAttributeValue() {
    throw new UnsupportedOperationException("Method getXmlAttributeValue is not yet implemented in " + getClass().getName());
  }

  @Override
  @NotNull
  public Converter getConverter() {
    throw new UnsupportedOperationException("Method getConverter is not yet implemented in " + getClass().getName());
  }

  @Override
  public void setStringValue(String value) {
    throw new UnsupportedOperationException("Method setStringValue is not yet implemented in " + getClass().getName());
  }

  @Override
  public void setValue(Object value) {
    throw new UnsupportedOperationException("Method setValue is not yet implemented in " + getClass().getName());
  }

  @Override
  public String getStringValue() {
    throw new UnsupportedOperationException("Method getStringValue is not yet implemented in " + getClass().getName());
  }

  @Override
  public String getRawText() {
    throw new UnsupportedOperationException("Method getRawText is not yet implemented in " + getClass().getName());
  }

  @Override
  public Object getValue() {
    throw new UnsupportedOperationException("Method getValue is not yet implemented in " + getClass().getName());
  }
}