blob: a442d8d383377f4b176cfc0a530280e8010d3cb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package de.thedevstack.conversationsplus.xmpp.jingle.stanzas;
import de.thedevstack.conversationsplus.xml.Element;
public class Reason extends Element {
private Reason(String name) {
super(name);
}
public Reason() {
super("reason");
}
}
|