Move Create offer to new package structure

This commit is contained in:
Manfred Karrer 2014-09-09 09:59:16 +02:00
parent 08dba76d9e
commit cd606d4b96
19 changed files with 157 additions and 145 deletions

View file

@ -18,7 +18,7 @@
package io.bitsquare;
import io.bitsquare.btc.RestrictionsTest;
import io.bitsquare.gui.trade.createoffer.CreateOfferPMTest;
import io.bitsquare.gui.pm.trade.CreateOfferPMTest;
import io.bitsquare.gui.util.BSFormatterTest;
import io.bitsquare.gui.util.BitSquareConverterTest;
import io.bitsquare.gui.util.BitSquareNumberValidatorTest;

View file

@ -15,9 +15,10 @@
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
*/
package io.bitsquare.gui.trade.createoffer;
package io.bitsquare.gui.pm.trade;
import io.bitsquare.bank.BankAccountType;
import io.bitsquare.gui.model.trade.CreateOfferModel;
import io.bitsquare.gui.util.BSFormatter;
import io.bitsquare.locale.Country;

View file

@ -68,7 +68,7 @@ public class CreateOfferUITestRunner extends Application {
log.debug("re load");
pane.getChildren().removeAll();
BSFXMLLoader loader = new BSFXMLLoader(
getUrl("/io/bitsquare/gui/trade/createoffer/CreateOfferView.fxml"), false);
getUrl("/io/bitsquare/gui/view/trade/CreateOfferView.fxml"), false);
try {
view = loader.load();
pane.getChildren().setAll(view);