moved quest gui to quest package

This commit is contained in:
Maxmtg
2013-05-23 13:37:34 +00:00
parent 79c3c22c25
commit 0303b34339
5 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
package forge.gui.bazaar;
package forge.quest.gui;
import java.awt.Font;

View File

@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package forge.gui.bazaar;
package forge.quest.gui;
import java.awt.Component;
import java.util.ArrayList;

View File

@@ -1,3 +1,3 @@
/** Views (as in model-view-controller) for Forge. */
package forge.gui.bazaar;
package forge.quest.gui;

View File

@@ -7,11 +7,11 @@ import javax.swing.SwingUtilities;
import net.miginfocom.swing.MigLayout;
import forge.Command;
import forge.control.ControlBazaarUI;
import forge.gui.bazaar.ViewStall;
import forge.gui.toolbox.FLabel;
import forge.gui.toolbox.FPanel;
import forge.gui.toolbox.FSkin;
import forge.quest.bazaar.QuestBazaarManager;
import forge.quest.gui.ViewStall;
/** Lays out containers and borders for resizeable layout and
@@ -95,7 +95,7 @@ public class ViewBazaarUI extends FPanel {
/**
* TODO: Write javadoc for this method.
* @return {@link forge.gui.bazaar.ViewStall}
* @return {@link forge.quest.gui.ViewStall}
*/
public ViewStall getPnlSingleStall() {
return this.pnlSingleStall;