25 lines
604 B
Java
25 lines
604 B
Java
|
package org.simpleframework.xml.stream;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
abstract class EventAttribute implements Attribute {
|
||
|
@Override // org.simpleframework.xml.stream.Attribute
|
||
|
public String getPrefix() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Override // org.simpleframework.xml.stream.Attribute
|
||
|
public String getReference() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Override // org.simpleframework.xml.stream.Attribute
|
||
|
public Object getSource() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Override // org.simpleframework.xml.stream.Attribute
|
||
|
public boolean isReserved() {
|
||
|
return false;
|
||
|
}
|
||
|
}
|