예제 #1
0
 public ILinkedDataAgent hide() {
   super.hide();
   return this;
 }
예제 #2
0
 public ILinkedDataAgent setColor(double dr, double dg, double db, double da) {
   super.setColor(dr, dg, db, da);
   return this;
 }
예제 #3
0
 public ILinkedDataAgent setHSBColor(double h, double s, double b) {
   super.setHSBColor(h, s, b);
   return this;
 }
예제 #4
0
 public ILinkedDataAgent setColor(float fgray, float falpha) {
   super.setColor(fgray, falpha);
   return this;
 }
예제 #5
0
 public ILinkedDataAgent setColor(int r, int g, int b, int a) {
   super.setColor(r, g, b, a);
   return this;
 }
예제 #6
0
 public ILinkedDataAgent setColor(IColor c) {
   super.setColor(c);
   return this;
 }
예제 #7
0
 // public ILinkedDataAgent setColor(Color c){ super.setColor(c); return this; }
 // public ILinkedDataAgent setColor(Color c, int alpha){ super.setColor(c,alpha); return this; }
 // public ILinkedDataAgent setColor(Color c, float alpha){ super.setColor(c,alpha); return this; }
 // public ILinkedDataAgent setColor(Color c, double alpha){ super.setColor(c,alpha); return this;
 // }
 public ILinkedDataAgent setColor(int gray) {
   super.setColor(gray);
   return this;
 }
예제 #8
0
 public ILinkedDataAgent clr(double dgray) {
   super.clr(dgray);
   return this;
 }
예제 #9
0
 public ILinkedDataAgent clr(int gray, int alpha) {
   super.clr(gray, alpha);
   return this;
 }
예제 #10
0
 // public ILinkedDataAgent clr(Color c){ super.clr(c); return this; }
 // public ILinkedDataAgent clr(Color c, int alpha){ super.clr(c,alpha); return this; }
 // public ILinkedDataAgent clr(Color c, float alpha){ super.clr(c,alpha); return this; }
 // public ILinkedDataAgent clr(Color c, double alpha){ super.clr(c,alpha); return this; }
 public ILinkedDataAgent clr(int gray) {
   super.clr(gray);
   return this;
 }
예제 #11
0
 public ILinkedDataAgent clr(float fgray) {
   super.clr(fgray);
   return this;
 }
예제 #12
0
 public ILinkedDataAgent clr(IColor c, float alpha) {
   super.clr(c, alpha);
   return this;
 }
예제 #13
0
 public ILinkedDataAgent clr(IColor c) {
   super.clr(c);
   return this;
 }
예제 #14
0
 public ILinkedDataAgent show() {
   super.show();
   return this;
 }
예제 #15
0
 public ILinkedDataAgent weight(float w) {
   super.weight(w);
   return this;
 }
예제 #16
0
 public ILinkedDataAgent clr(float fgray, float falpha) {
   super.clr(fgray, falpha);
   return this;
 }
예제 #17
0
 public ILinkedDataAgent weight(double w) {
   super.weight(w);
   return this;
 }
예제 #18
0
 public ILinkedDataAgent clr(double dgray, double dalpha) {
   super.clr(dgray, dalpha);
   return this;
 }
예제 #19
0
 public ILinkedDataAgent setColor(IColor c, double alpha) {
   super.setColor(c, alpha);
   return this;
 }
예제 #20
0
 public ILinkedDataAgent clr(int r, int g, int b, int a) {
   super.clr(r, g, b, a);
   return this;
 }
예제 #21
0
 public ILinkedDataAgent setColor(int gray, int alpha) {
   super.setColor(gray, alpha);
   return this;
 }
예제 #22
0
 public ILinkedDataAgent clr(float fr, float fg, float fb, float fa) {
   super.clr(fr, fg, fb, fa);
   return this;
 }
예제 #23
0
 public ILinkedDataAgent setColor(double dgray, double dalpha) {
   super.setColor(dgray, dalpha);
   return this;
 }
예제 #24
0
 public ILinkedDataAgent clr(double dr, double dg, double db, double da) {
   super.clr(dr, dg, db, da);
   return this;
 }
예제 #25
0
 public ILinkedDataAgent setColor(float fr, float fg, float fb, float fa) {
   super.setColor(fr, fg, fb, fa);
   return this;
 }
예제 #26
0
 public ILinkedDataAgent hsb(float h, float s, float b) {
   super.hsb(h, s, b);
   return this;
 }
예제 #27
0
 public ILinkedDataAgent setHSBColor(float h, float s, float b) {
   super.setHSBColor(h, s, b);
   return this;
 }
예제 #28
0
 public ILinkedDataAgent hsb(double h, double s, double b) {
   super.hsb(h, s, b);
   return this;
 }
예제 #29
0
 public ILinkedDataAgent setData(T val) {
   super.setData(val);
   nextData = data.dup();
   return this;
 }
예제 #30
0
 public ILinkedDataAgent layer(ILayer l) {
   super.layer(l);
   return this;
 }