Uses of Class
de.cau.cs.kieler.kiml.ui.util.DebugCanvas.Color

Packages that use DebugCanvas.Color
de.cau.cs.kieler.kiml.ui.util Utility classes for the KIML UI plugin. 
 

Uses of DebugCanvas.Color in de.cau.cs.kieler.kiml.ui.util
 

Methods in de.cau.cs.kieler.kiml.ui.util that return DebugCanvas.Color
static DebugCanvas.Color DebugCanvas.Color.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DebugCanvas.Color[] DebugCanvas.Color.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in de.cau.cs.kieler.kiml.ui.util with parameters of type DebugCanvas.Color
 void DebugCanvas.drawCircle(float x, float y, float d, DebugCanvas.Color color)
          Draws a non-filled circle on the canvas.
 void DebugCanvas.drawEllipse(float x, float y, float w, float h, DebugCanvas.Color color)
          Draws a non-filled ellipse on the canvas.
 void DebugCanvas.drawFilledCircle(float x, float y, float d, DebugCanvas.Color color)
          Draws a filled circle on the canvas.
 void DebugCanvas.drawFilledEllipse(float x, float y, float w, float h, DebugCanvas.Color color)
          Draws a filled ellipse on the canvas.
 void DebugCanvas.drawFilledRectangle(float x, float y, float w, float h, DebugCanvas.Color color)
          Draws a filled rectangle on the canvas.
 void DebugCanvas.drawLine(float x1, float y1, float x2, float y2, DebugCanvas.Color color)
          Draws a line on the canvas.
 void DebugCanvas.drawRectangle(float x, float y, float w, float h, DebugCanvas.Color color)
          Draws a non-filled rectangle one the canvas.
 void DebugCanvas.drawString(String string, float x, float y, DebugCanvas.Color color)
          Draws a string on the canvas.