]> matita.cs.unibo.it Git - logicplayer.git/blobdiff - mainActivity/src/com/example/furt/myapplication/Border.java
Ported to latest version of Android SDK
[logicplayer.git] / mainActivity / src / com / example / furt / myapplication / Border.java
diff --git a/mainActivity/src/com/example/furt/myapplication/Border.java b/mainActivity/src/com/example/furt/myapplication/Border.java
deleted file mode 100755 (executable)
index 532b11a..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-package com.example.furt.myapplication;
-
-import android.app.AlertDialog;
-import android.app.Dialog;
-import android.app.DialogFragment;
-import android.content.DialogInterface;
-import android.graphics.Color;
-import android.os.Bundle;
-
-public  class Border {
-    private int orientation;
-    private int width;
-    private int color = Color.BLACK;
-    private int style;
-    public int getWidth() {
-        return width;
-    }
-    public void setWidth(int width) {
-        this.width = width;
-    }
-    public int getColor() {
-        return color;
-    }
-    public void setColor(int color) {
-        this.color = color;
-    }
-    public int getStyle() {
-        return style;
-    }
-    public void setStyle(int style) {
-        this.style = style;
-    }
-    public int getOrientation() {
-        return orientation;
-    }
-    public void setOrientation(int orientation) {
-        this.orientation = orientation;
-    }
-    public Border(int Style) {
-        this.style = Style;
-    }
-}
-