mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
Fixing Compile errors, not sure if this is how we wanted this.
This commit is contained in:
@@ -13,4 +13,15 @@ public interface IControlSubmenu {
|
||||
|
||||
/** Update whatever content is in the panel. */
|
||||
void update();
|
||||
|
||||
/**
|
||||
* TODO: Write javadoc for this method.
|
||||
* @return
|
||||
*/
|
||||
Command getMenuCommand();
|
||||
|
||||
/**
|
||||
* TODO: Write javadoc for this method.
|
||||
*/
|
||||
void initialize();
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@ import javax.swing.JList;
|
||||
|
||||
import forge.Command;
|
||||
import forge.control.home.IControlSubmenu;
|
||||
import forge.view.home.IViewSubmenu;
|
||||
import forge.view.home.constructed.ViewSubmenuColors;
|
||||
|
||||
/**
|
||||
@@ -64,4 +65,22 @@ public enum ControlSubmenuColors implements IControlSubmenu {
|
||||
public void randomSelect() {
|
||||
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see forge.control.home.IControlSubmenu#getCommand()
|
||||
*/
|
||||
@Override
|
||||
public Command getCommand() {
|
||||
// TODO This needs to be fixed
|
||||
return null;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see forge.control.home.IControlSubmenu#getView()
|
||||
*/
|
||||
@Override
|
||||
public IViewSubmenu getView() {
|
||||
// TODO This needs to be fixed
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@ import forge.control.FControl;
|
||||
import forge.control.home.IControlSubmenu;
|
||||
import forge.deck.Deck;
|
||||
import forge.util.IFolderMap;
|
||||
import forge.view.home.IViewSubmenu;
|
||||
import forge.view.home.constructed.ViewSubmenuCustom;
|
||||
|
||||
/**
|
||||
@@ -56,4 +57,22 @@ public enum ControlSubmenuCustom implements IControlSubmenu {
|
||||
public void randomSelect() {
|
||||
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see forge.control.home.IControlSubmenu#getCommand()
|
||||
*/
|
||||
@Override
|
||||
public Command getCommand() {
|
||||
// TODO This needs to be fixed
|
||||
return null;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see forge.control.home.IControlSubmenu#getView()
|
||||
*/
|
||||
@Override
|
||||
public IViewSubmenu getView() {
|
||||
// TODO This needs to be fixed
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user