Back to project page androidHarmony.
The source code is released under:
Copyright (c) 2014 Itay Bianco <itay_bia@hotmail.com> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the followin...
If you think the Android project androidHarmony listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.harmony.api; //from w w w.java2 s .c o m import org.jivesoftware.smack.packet.IQ; /** * * @author Owner * an IQ packet that holds the text taken from the "oa" extension that the harmony hub uses * */ public class OaIq extends IQ { private String text = null; public OaIq(String aText) { text = aText; } @Override public String getChildElementXML() { return null; } public String GetData() { return text; } }