ImagingBBoxEnum.java
1.1 KB
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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.Attribute;
public final class ImagingBBoxEnum
extends Attribute {
public ImagingBBoxEnum(String NS, String localName, String qName, String value) {
this(NS, localName, qName, value, true);
}
private ImagingBBoxEnum(String NS, String localName, String qName, String value, boolean internSymbols) {
super(NS, localName, qName, value, internSymbols);
}
public ImagingBBoxEnum(String name, String value) {
super(name, value);
}
@Override
public Attribute newAttribute(String value) {
return this.newAttribute(this.getNS(), this.getLocalName(), this.getQName(), value, false);
}
@Override
public Attribute newAttribute(String NS, String localName, String qName, String value) {
return this.newAttribute(NS, localName, qName, value, true);
}
@Override
public Attribute newAttribute(String NS, String localName, String qName, String value, boolean internSymbols) {
return new ImagingBBoxEnum(NS, localName, qName, value, internSymbols);
}
}