mirror of
https://github.com/igniterealtime/Spark.git
synced 2026-03-26 01:15:40 +00:00
jingle plugin: fix package name
This commit is contained in:
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
|
||||
import java.awt.Color;
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import javax.swing.JPanel;
|
||||
import javax.swing.BorderFactory;
|
||||
@ -50,4 +50,4 @@ public class ControlPanel extends JPanel {
|
||||
|
||||
g.drawImage(bufferedImage, 0, 0, getWidth(), getHeight(), null);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import org.jivesoftware.spark.component.FileDragLabel;
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import org.jivesoftware.resource.SparkRes;
|
||||
import org.jivesoftware.smack.SmackException;
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Font;
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import javax.sound.sampled.*;
|
||||
import javax.swing.tree.DefaultMutableTreeNode;
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.util.PropertyResourceBundle;
|
||||
@ -37,7 +37,7 @@ public class JinglePhoneRes {
|
||||
static ClassLoader cl = JinglePhoneRes.class.getClassLoader();
|
||||
|
||||
static {
|
||||
JinglePhoneRes.prb = (PropertyResourceBundle) ResourceBundle.getBundle("org/jivesoftware/sparkplugin/jingle");
|
||||
JinglePhoneRes.prb = (PropertyResourceBundle) ResourceBundle.getBundle("org/jivesoftware/spark/plugin/jingle/jingle");
|
||||
}
|
||||
|
||||
public static final String getString(String propertyName) {
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import org.jivesoftware.resource.SparkRes;
|
||||
import org.jivesoftware.smack.*;
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.PropertyResourceBundle;
|
||||
@ -48,4 +48,4 @@ public class JingleResources {
|
||||
|
||||
return MessageFormat.format(str, obj);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Component;
|
||||
@ -339,4 +339,4 @@ public class JingleRoom extends JPanel {
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import org.jivesoftware.spark.ui.ChatRoom;
|
||||
|
||||
@ -13,14 +13,14 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import org.jivesoftware.resource.SparkRes;
|
||||
import org.jivesoftware.spark.SparkManager;
|
||||
import org.jivesoftware.spark.component.tabbedPane.SparkTab;
|
||||
import org.jivesoftware.spark.ui.ChatRoom;
|
||||
import org.jivesoftware.spark.ui.SparkTabHandler;
|
||||
import org.jivesoftware.sparkplugin.JingleStateManager.JingleRoomState;
|
||||
import org.jivesoftware.spark.plugin.jingle.JingleStateManager.JingleRoomState;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Component;
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import java.applet.Applet;
|
||||
import java.applet.AudioClip;
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import org.jivesoftware.spark.component.TimeTrackingLabel;
|
||||
import org.jivesoftware.spark.component.VerticalFlowLayout;
|
||||
@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.sparkplugin;
|
||||
package org.jivesoftware.spark.plugin.jingle;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Cursor;
|
||||
@ -5,7 +5,7 @@
|
||||
<author>Derek DeMoro</author>
|
||||
<homePage>https://IgniteRealtime.org</homePage>
|
||||
<email>support@IgniteRealtime.org</email>
|
||||
<class>org.jivesoftware.sparkplugin.JinglePlugin</class>
|
||||
<class>org.jivesoftware.spark.plugin.jingle.JinglePlugin</class>
|
||||
<minSparkVersion>3.1.0</minSparkVersion>
|
||||
<os>Windows,mac,linux</os>
|
||||
<java>11</java>
|
||||
|
||||
Reference in New Issue
Block a user