]> matita.cs.unibo.it Git - logicplayer.git/blobdiff - mainActivity/app/src/main/java/com/example/furt/myapplication/Border.java
Ported to latest version of Android SDK
[logicplayer.git] / mainActivity / app / src / main / java / com / example / furt / myapplication / Border.java
diff --git a/mainActivity/app/src/main/java/com/example/furt/myapplication/Border.java b/mainActivity/app/src/main/java/com/example/furt/myapplication/Border.java
new file mode 100644 (file)
index 0000000..532b11a
--- /dev/null
@@ -0,0 +1,43 @@
+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;
+    }
+}
+