Skip to content

Commit

Permalink
Change package name
Browse files Browse the repository at this point in the history
  • Loading branch information
boazy committed Aug 3, 2020
1 parent 2ebdaff commit 45eb7b6
Show file tree
Hide file tree
Showing 48 changed files with 50 additions and 57 deletions.
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Mon Aug 03 17:15:08 JST 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.GridLayout;
import java.awt.event.ActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import javax.swing.tree.DefaultMutableTreeNode;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.IOException;
import java.io.OutputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

public class DBElement
implements Cloneable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

public abstract class DBElementValue
implements Cloneable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

public class DBException extends Exception
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.util.ArrayList;
import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.FileInputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.BorderLayout;
import java.awt.Dimension;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.Dimension;
import java.awt.event.ActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

public class InventoryItem
implements Comparable<InventoryItem>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import javax.swing.tree.DefaultMutableTreeNode;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.BorderLayout;
import java.awt.Dimension;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

public class ItemTemplate
implements Comparable<ItemTemplate>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.EOFException;
import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import javax.swing.SwingUtilities;

public class LoadFile extends Thread
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import javax.swing.SwingUtilities;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

public class LocalizedSubstring
implements Cloneable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
package TWEditor;

import sun.misc.OSEnvironment;
package app.tweditor;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
import java.io.IOException;
import java.io.PrintStream;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.swing.JFrame;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.Dimension;
import java.awt.Point;
Expand All @@ -8,7 +8,6 @@
import java.awt.event.WindowEvent;
import java.io.File;
import java.io.IOException;
import java.util.Properties;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JMenu;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import javax.swing.JTextField;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.FileInputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import javax.swing.Box;
import javax.swing.BoxLayout;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

public class Quest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.FileInputStream;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.FileInputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.FileInputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.EOFException;
import java.io.FileInputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.FileOutputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.GridLayout;
import java.awt.event.ActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.GridLayout;
import javax.swing.Box;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.awt.GridLayout;
import java.awt.event.ActionEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.BufferedReader;
import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWEditor;
package app.tweditor;

import java.io.File;
import java.io.FileOutputStream;
Expand Down

0 comments on commit 45eb7b6

Please sign in to comment.