]> matita.cs.unibo.it Git - logicplayer.git/blob - mainActivity/src/com/example/furt/myapplication/Border.java
The applet.
[logicplayer.git] / mainActivity / src / com / example / furt / myapplication / Border.java
1 package com.example.furt.myapplication;
2
3 import android.app.AlertDialog;
4 import android.app.Dialog;
5 import android.app.DialogFragment;
6 import android.content.DialogInterface;
7 import android.graphics.Color;
8 import android.os.Bundle;
9
10 public  class Border {
11     private int orientation;
12     private int width;
13     private int color = Color.BLACK;
14     private int style;
15     public int getWidth() {
16         return width;
17     }
18     public void setWidth(int width) {
19         this.width = width;
20     }
21     public int getColor() {
22         return color;
23     }
24     public void setColor(int color) {
25         this.color = color;
26     }
27     public int getStyle() {
28         return style;
29     }
30     public void setStyle(int style) {
31         this.style = style;
32     }
33     public int getOrientation() {
34         return orientation;
35     }
36     public void setOrientation(int orientation) {
37         this.orientation = orientation;
38     }
39     public Border(int Style) {
40         this.style = Style;
41     }
42 }
43