EOS 2  1.1.0
Einfache Objektbasierte Sprache
FillDescriptor.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.base;
2 
8 public class FillDescriptor {
10  private MutableColor color;
11  private FillStyle type;
12  public FillDescriptor() {
14  }
15  public FillDescriptor(MutableColor color, FillStyle type) {
16  this.color = color;
17  this.type = type;
18  }
20  this.color = fill.color;
21  this.type = fill.type;
22  }
24  return color;
25  }
26  public void setColor(MutableColor c) {
27  this.color = c;
28  }
30  return type;
31  }
32  public void setFillStyle(FillStyle ft) {
33  type = ft;
34  }
35 }
FillDescriptor(MutableColor color, FillStyle type)
static final FillDescriptor EMPTY
static final MutableColor BLACK
static final MutableColor WHITE
Impressum